c++ boost上来就出错了。没理解 -I 是链接

开始学习boost,

下载了boost,

参考这里开始第一个boost程序。http://www.boost.org/doc/libs/1_48_0/more/getting_started/unix-variants.html

可是我一执行,就报错:

jill@ubuntu:~/c-linux/boost-me$ c++ -I first-test.cpp -o first
c++: no input files

 

折腾了好长时间,才明白,呵呵,-I 后面要写的boost的安装路径。好傻呀我。呵呵

再来:

jill@ubuntu:~/c-linux/boost-me$ c++ -I /home/jill/c-linux/boost first-test.cpp -o first-test

 

binggo!

 

 

你可能感兴趣的:(c++ boost)