gpt4 book ai didi

c - 编译共享库时没有 undefined reference

转载 作者:太空宇宙 更新时间:2023-11-04 00:48:37 25 4
gpt4 key购买 nike

我想知道为什么在使用 -shared 作为 gcc 的选项编译为共享库时我没有得到 undefined reference 。考虑以下情况:

#include <confuse.h>

int
main(int argc, char **argv)
{
cfg_opt_t opts[1];
cfg_t *cfg = cfg_init(opts, CFGF_NOCASE);
return 0;
}

这里需要libconfuse才能正常运行程序。如果我将它编译为“普通”应用程序而没有指定需要 libconfuse (-lconfuse),我会得到以下(从我的角度来看是常规的)错误:

$ gcc -Wall -Wno-unused-variable test.c -o test
/tmp/ccTVz6an.o: In function `main':
test.c:(.text+0x20): undefined reference to `cfg_init'
collect2: error: ld returned 1 exit status

如果我编译与共享库相同的代码,我不会收到关于该库的任何错误消息:

$ gcc -Wall -Wno-unused-variable test.c -o test.so -shared
$ echo $?
0

谁能给黑暗带来光明?

最佳答案

您正在编译一个(共享)库,而不是一个程序,并且库应该是不完整的,因此 undefined reference 不会阻止共享库的构建。

是的,这听起来可能有点令人惊讶,特别是如果您来自共享库始终完全链接的操作系统(Windows?),但这就是 ELF 的工作方式。

如果您想确保在构建共享库时解析所有引用,您可以使用链接器选项 --no-undefined:

gcc -Wall -Wno-unused-variable test.c -o test.so -shared -Wl,--no-undefined

请注意,链接共享库时用于解析引用的库将作为 NEEDED 条目添加到该库的 header ,然后在使用该库时自动链接。有关详细信息,请参阅 objdump -p

关于c - 编译共享库时没有 undefined reference ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27651132/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com