对于原因,我正在尝试在GCC中使用顶级程序集来定义一些静态函数。但是,由于GCC没有“看到”这些函数的主体,它警告我它们“被使用但从未定义过。一个简单的源代码示例可能如下所示:
/* I'm going to patch the jump offset manually. */
asm(".pushsection .slen,\"awx\",@progbits;"
".type test1, @function;"
"test1: jmp 0;"
".popsection;");
/* Give GCC a C prototype: */
static void test(void);
int main(int argc, char **argv)
{
/* ... */
test();
/* ... */
}
然后,
$ gcc -c -o test.o test.c
test.c:74:13: warning: ‘test’ used but never defined [enabled by default]
static void test(void);
^
如何避免这种情况?
答案 0 :(得分:9)
gcc
在这里非常聪明,因为您已将该函数标记为静态,这意味着它应该在此翻译单元中定义。
我要做的第一件事是摆脱static
说明符。这将允许(但不要求)您在不同的翻译单元中定义它,因此gcc
将无法在编译时进行投诉。
可能引入其他问题,我们必须看到。
答案 1 :(得分:1)
asm(".pushsection .slen,\"awx\",@progbits;"
".type test1_in_asm, @function;"
"test1_in_asm: jmp 0;"
".popsection;");
static void test(void);
#pragma redefine_extname test test1_in_asm
或(使用上面相同的asm
块)asm labels:
static void test(void) asm("test1_in_asm");
或者diagnostic pragmas可以选择性地避免警告