我正在尝试编译和使用Boost 1.54库并遇到了一个deadend。
我编译并安装了文档中提到的库:
./bootstrap.sh
./b2 install
我甚至尝试使用以下方式完成重新安装:
./bootstrap.sh
./b2 threading=multi install
我已使用-lboost_thread
和-L*path
进行关联以提升* / bin.v2 / libs
我仍然收到以下链接器错误:
undefined reference to boost::thread::start_thread_noexcept()
undefined reference to boost::thread::join_noexcept()
我在Eclipse中的Ubuntu 12.04上使用gcc 4.6.3。
有谁知道如何解决这个问题?
答案 0 :(得分:3)
在ubuntu存储库的默认提升后出现了相当大的痛苦,我使用默认选项安装了1.54.0版本(来自官方网页),以下内容对我有用:
g++ test.cpp -o test -L/usr/local/lib/ -lboost_thread
P.S:在Ubuntu 12.04上, gcc 4.63 。
P.S2:我的test.cpp
中包括:
#include "boost/thread/thread.hpp"
#include "boost/bind.hpp"