当我在
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