linux – 如何解决’collect2:ld返回1退出状态’?

前端之家收集整理的这篇文章主要介绍了linux – 如何解决’collect2:ld返回1退出状态’?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
当我在 linux中构建我的源代码时,我得到了一个错误
qstring.cpp:(.text+0x2c01): undefined reference to `terminate(void)'
collect2: ld returned 1 exit status

如何解决这个问题呢?

解决方法

terminate在C标准库中定义,因此请确保将其链接到.假设您正在使用gcc进行编译,您应该使用g可执行文件来编译源代码,而不是gcc可执行文件
g++ source.cc -o output

当以g执行时,链接器会自动链接到C标准库(libstdc)中.如果您改为将gcc作为普通gcc执行,或者直接调用链接器ld,那么您需要自己添加-lstdc以链接库,例如:

gcc source.cc -o output -lstdc++  # Compile directly from source
ld source1.o source2.o -o output -lstdc++  # Link together object files
原文链接:https://www.f2er.com/linux/394959.html

猜你在找的Linux相关文章