我正在尝试学习Boost线程。 我正在使用在线教程中的代码,经过一些错误我意识到我需要更新版本的Boost,所以我将它的最新版本下载到一个目录中,解压缩并安装命令:
./bootstrap.sh
./bjam install
我试图运行的示例代码是:
#include <boost/thread.hpp>
#include <iostream>
using namespace std;
using namespace boost;
void threader()
{
for (int i = 0; i < 5; ++i)
{
sleep(1);
cout << boost::this_thread::get_id() << "-" << i << endl;
//cout << "-" << i << endl;
}
}
int main()
{
thread t(threader);
sleep(1);
thread u(threader);
t.join();
u.join();
}
我使用与旧版Boost相同的行编译(1.33作为标准附带Centos):
g++ -Wall -L/usr/local/lib -lboost_thread threadtest.cpp -o threadtest
它编译时没有错误(与旧版本的Boost不同)但是当我运行threadtest时,我得到:
./threadtest: error while loading shared libraries: libboost_thread.so.1.47.0: cannot open shared object file: No such file or directory
查看/ usr / local / lib dircetory我可以看到以下内容:
-rw-r--r-- 1 root root 217270 Nov 10 12:50 libboost_thread.a
lrwxrwxrwx 1 root root 25 Nov 10 12:43 libboost_thread.so -> libboost_thread.so.1.47.0
-rwxr-xr-x 1 root root 138719 Nov 10 12:43 libboost_thread.so.1.47.0
所以我不明白为什么它不起作用。 我认为这与编译行的-lboost_thread部分有关。 我尝试直接链接到库:
g++ -Wall -L/usr/local/lib libboost_thread.a threadtest.cpp -o threadtest
但它再次找不到该文件。 任何人都可以帮忙吗?
答案 0 :(得分:2)
我需要使用以下内容将lib目录的路径重新添加到LD_LIBRARY_PATH:
export LD_LIBRARY_PATH="/usr/local/lib/"
这就是诀窍。