在Linux中链接Boost库

我正在尝试使用Boost的Asio来构build一个项目,而且我遇到了一些麻烦。 最初,我试图build立没有任何额外的库的项目,因为一切都应该在头文件。

我正在尝试构build的程序如下所示:

#include <iostream> #include <boost/asio.hpp> #include <boost/date_time/posix_time/posix_time.hpp> int main() { boost::asio::io_service io; boost::asio::deadline_timer t(io, boost::posix_time::seconds(5)); t.wait(); std::cout << "Hello, world!" << std::endl; return 0; } 

它可以在Boost的网站上find。

所以,最初我只是:

 -I /usr/include/boost_1_40_0 

这导致了以下错误:

 make -k all Building target: HelloWorld Invoking: GCC C++ Linker g++ -o"HelloWorld" ./main.o ./main.o: In function `__static_initialization_and_destruction_0': /usr/include/boost_1_40_0/boost/system/error_code.hpp:205: undefined reference to `boost::system::get_system_category()' /usr/include/boost_1_40_0/boost/system/error_code.hpp:206: undefined reference to `boost::system::get_generic_category()' /usr/include/boost_1_40_0/boost/system/error_code.hpp:211: undefined reference to `boost::system::get_generic_category()' /usr/include/boost_1_40_0/boost/system/error_code.hpp:212: undefined reference to `boost::system::get_generic_category()' /usr/include/boost_1_40_0/boost/system/error_code.hpp:213: undefined reference to `boost::system::get_system_category()' ./main.o: In function `boost::asio::error::get_system_category()': /usr/include/boost_1_40_0/boost/asio/error.hpp:218: undefined reference to `boost::system::get_system_category()' ./main.o: In function `error_code': /usr/include/boost_1_40_0/boost/system/error_code.hpp:312: undefined reference to `boost::system::get_system_category()' ./main.o: In function `posix_tss_ptr': /usr/include/boost_1_40_0/boost/asio/detail/posix_tss_ptr.hpp:47: undefined reference to `pthread_key_create' ./main.o: In function `~posix_tss_ptr': /usr/include/boost_1_40_0/boost/asio/detail/posix_tss_ptr.hpp:61: undefined reference to `pthread_key_delete' ./main.o: In function `boost::asio::detail::posix_thread::join()': /usr/include/boost_1_40_0/boost/asio/detail/posix_thread.hpp:77: undefined reference to `pthread_join' ./main.o: In function `~posix_thread': /usr/include/boost_1_40_0/boost/asio/detail/posix_thread.hpp:69: undefined reference to `pthread_detach' collect2: ld returned 1 exit status make: *** [HelloWorld] Error 1 make: Target `all' not remade because of errors. 

看来我需要系统库。 所以,我按照在这里find的入门指南,这给了我一堆位于/ usr / include / boost_1_40_0 / stage / lib的库 。 其中有libboost_system.a 。 因此,我试图编译:

 -I /usr/include/boost_1_40_0 -L /usr/include/boost_1_40_0/stage/lib -l libboost_system 

但是,我得到这个:

 make -k all Building target: HelloWorld Invoking: GCC C++ Linker g++ -L/usr/lib -L/usr/include/boost_1_40_0/stage/lib -o"HelloWorld" ./main.o -llibboost_system /usr/bin/ld: cannot find -llibboost_system collect2: ld returned 1 exit status make: *** [HelloWorld] Error 1 make: Target `all' not remade because of errors. 

我不知道为什么,但似乎无法确定图书馆或我尝试的其他任何人。 我可能做错了什么? 提前致谢!

-lboost_system更改为-lboost_system

在Linux中,当引用所述库时,库前面的“lib”前缀不被使用。

在这种情况下,詹姆斯的答案是正确的,但如果任何其他人碰巧遇到这个职位就像我做的那样,那么请注意,如果您将旧的提升标题链接到较新的库,你可以得到这个消息。 get_system_category()具体已被弃用。 我遇到了这个问题,同时意外地包括发行版提供的标题,但链接对我自己的内部副本的提振。

如果您仍然遇到问题,您可能需要添加连接器标志来包含posix线程:

 -lpthread