在linux上运行boost库的问题
我现在在linux上安装了最新的boost库,运行带#include《boost/bind.hpp>的试验程序就能运行,但是调我的一个工具箱的时候,提示coulenotf...
我现在在linux上安装了最新的boost库,运行带#include《boost/bind.hpp>的试验程序就能运行,但是调我的一个工具箱的时候,提示coule not find the following boost libraries:boost_program_optiongs等几个库,No boost libraries were found .you may need to set boost_librariydir to the directory containing boost libraries or boost_root to the location of boost 但是我在boost的文件里看到了这几个库的文件夹了,应该怎么办啊
展开
2个回答
展开全部
我系统是ubuntukylin14.04
然后今天去BOOST下了最新版的boost1.57版
下载下来的压缩文件我解压到/opt目录下即/opt/boost_1_57_0
然后
cd /opt/boost_1_57_0;
./boststrap;
./b2
这里b2命令执行完成后显示:
The Boost C++ Libraries were successfully built!
The following directory should be added to compiler include paths:
/opt/boost_1_57_0
The following directory should be added to linker library paths:
/opt/boost_1_57_0/stage/lib
然后我找了一段例子
C/C++ code?
1
2
3
4
5
6
7
8
9
10
#include<iostream>
#include<boost/bind.hpp>
using namespace std;
using namespace boost;
int fun(int x,int y){return x+y;}
int main(){
int m=1;int n=2;
cout<<boost::bind(fun,_1,_2)(m,n)<<endl;
return 0;
}
用g++编译的时候提示
bst.cxx:2:31: fatal error: boost/bind.hpp: 没有那个文件或目录
#include<boost/bind.hpp>
^
compilation terminated.
然后今天去BOOST下了最新版的boost1.57版
下载下来的压缩文件我解压到/opt目录下即/opt/boost_1_57_0
然后
cd /opt/boost_1_57_0;
./boststrap;
./b2
这里b2命令执行完成后显示:
The Boost C++ Libraries were successfully built!
The following directory should be added to compiler include paths:
/opt/boost_1_57_0
The following directory should be added to linker library paths:
/opt/boost_1_57_0/stage/lib
然后我找了一段例子
C/C++ code?
1
2
3
4
5
6
7
8
9
10
#include<iostream>
#include<boost/bind.hpp>
using namespace std;
using namespace boost;
int fun(int x,int y){return x+y;}
int main(){
int m=1;int n=2;
cout<<boost::bind(fun,_1,_2)(m,n)<<endl;
return 0;
}
用g++编译的时候提示
bst.cxx:2:31: fatal error: boost/bind.hpp: 没有那个文件或目录
#include<boost/bind.hpp>
^
compilation terminated.
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询