linux下编译多工程,要写一个好用的makefile,难度比较大,使用eclipse或者Qt自动生成makefile,软件运行很占内存,在虚拟机上不方便。
boost库的bjam编译工具使用了一段时间,感觉搭建和使用都很方便。推荐使用。
入门地址:http://www.boost.org/build/tutorial.html
源码下载地址:https://sourceforge.net/projects/boost/files/
用户手册:http://www.boost.org/build/doc/html/index.html
安装很简洁:
./bootstrap.sh
./b2 install --prefix=PREFIX
安装好之后,可调整安装目录,只要编译命令之前设置(BOOST_BUILD_PATH),如我使用的pcompie.sh设置如下:
BOOST_BUILD_PATH="/Project/bjam/user/"
export BOOST_BUILD_PATH
#/Project/bjam/bin/b2 --debug-configuration
/Project/bjam/bin/b2 --toolset=gcc
这个是简单的使用,后续将不断完善。