19

如果我没有放置-lboost_system标志,我会理解此错误消息,但它确实在这里:

g++ -o build/myproject build/main/main.o -L/usr/local/boost/boost_1_52_0/boost/libs -L/usr/lib -Lbuild -L。-lboost_system -lboost_thread -lpthread -lboost_regex -lpq -lmylibrary
build/libmylibrary.a(library.o):在函数`__static_initialization_and_destruction_0(int, int)'中:
library.cpp:(.text+0x25f): undefined reference to `boost::system::generic_category()'
library.cpp:(.text+0x269): undefined reference to `boost::system::generic_category()'
library.cpp:(.text+0x273): undefined reference to `boost::system::system_category()'

你知道我应该调查什么来解决这个问题吗?(我使用 gcc 4.6.3)

4

1 回答 1

31

您链接库的顺序很重要,在您的情况下,您library.cpp显然使用了该boost_system

library.cpp:(.text+0x25f): undefined reference to `boost::system::generic_category()'
library.cpp:(.text+0x269): undefined reference to `boost::system::generic_category()'
library.cpp:(.text+0x273): undefined reference to `boost::system::system_category()'

要解决这个问题,您应该将 boost_system 库移动到链接行的末尾

g++ -o build/myproject build/main/main.o -L/usr/local/boost/boost_1_52_0/boost/libs -L/usr/lib -Lbuild -L. -lboost_thread -lpthread -lboost_regex -lpq -lmylibrary **-lboost_system** 

或者,构建libmylibrary.so为共享库并boost_system直接链接到该库。

于 2013-03-10T03:49:24.900 回答