编译期间链接到boost库失败

时间:2012-04-13 05:29:36

标签: c++ boost boost-asio dynamic-linking

我有一个非常简单的示例程序,我正在尝试编译,但我得到链接错误。

程序

int main()
{
  boost::asio::io_service io;

  boost::asio::deadline_timer t(io, boost::posix_time::seconds(5));
  t.wait();

  std::cout << "Hello, world!\n";

  return 0;
}

汇编

我正在使用以下编译选项:

g++ -L/usr/lib -lboost_system -lboost_filesystem -lboost_thread -pthread -I/usr/include timer.cpp -o timer

输出

我检查过动态库是否存在并位于-L路径中。以下是我得到的错误:

/tmp/cc3hJrVk.o: In function `__static_initialization_and_destruction_0(int, int)':
timer.cpp:(.text+0xf0): undefined reference to `boost::system::generic_category()'
timer.cpp:(.text+0xfc): undefined reference to `boost::system::generic_category()'
timer.cpp:(.text+0x108): undefined reference to `boost::system::system_category()'
/tmp/cc3hJrVk.o: In function `boost::system::error_code::error_code()':
timer.cpp:(.text._ZN5boost6system10error_codeC2Ev[_ZN5boost6system10error_codeC5Ev]+0x17): undefined reference to `boost::system::system_category()'
/tmp/cc3hJrVk.o: In function `boost::asio::error::get_system_category()':
timer.cpp:(.text._ZN5boost4asio5error19get_system_categoryEv[boost::asio::error::get_system_category()]+0x5): undefined reference to `boost::system::system_category()'
collect2: ld returned 1 exit status

正如您所看到的,如果您不正确地链接到libboost_system,似乎就会出现错误。我有两个单独安装的增强版,我已经测试过,而且我已经完成了我的智慧。

提前感谢您的帮助!

1 个答案:

答案 0 :(得分:4)

您需要在命令末尾的文件名之后移动所有库。

另外:Boost :: System必须与普通的boost库分开构建。因此,如果你没有单独构建它们,它们将不存在。

见第3节:

http://www.boost.org/doc/libs/1_49_0/more/getting_started/unix-variants.html