编译boost
2017-06-02 本文已影响0人
lidroid本人
boost真是C++用户的瑞士军刀,功能太多了,但是也太大了,编译起来非常耗时间,程序员常说boost是最考验C++编译器的东西,我们经常仅仅使用其中一部分功能,因此编译的时候只需要编译我们需要的部分可大大节省构建时间。
举个例子,最近在一个产品中仅用到了filesystem和date_time以及独立的asio,因此我只需要编译boost的filesystem和date_time即可。
第一步: bootstrap
./bootstrap.sh (windows用户执行bootstrap.bat)
第二步: 编译
./b2 --with-date_time --with-filesystem runtime-link=static link=static threading=multi variant=release
如果需要查看有哪些库可以通过以下命令查看:
./bootstrap.sh --show-libraries