dll.x

来自「俄罗斯高人Mamaich的Pocket gcc编译器(运行在PocketPC上)」· X 代码 · 共 21 行

X
21
字号
# This test examines the attribute support for DLLs.# Only COFF/PE formats support DLLs, (plus, as a special case# the mcore-elf toolchain), so the code here tries to determine# the file format and decide whether the test should be marked# as unsupported.set torture_eval_before_compile {    if ![istarget "mcore-*-elf"] {               set objformat [gcc_target_object_format]            if { $objformat != "pe" } {            unsupported "dll.c"            return 1        }    }}return 0

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?