备份一下,用的时候直接粘贴,免得到处找>_<
32
bjam threading=multi link=static runtime-link=static --stagedir=stage32 address-model=32
64
bjam threading=multi link=static runtime-link=static --stagedir=stage64 address-model=64
OR
set INCLUDE=%INCLUDE%;<path to tlhelp32.h>
例如
set INCLUDE=%INCLUDE%;C:\Program Files (x86)\Windows Kits\8.1\Include\um\
然后编译。
================
bjam 还有几个很有用的选项:
bjam参数
--build-dir= <builddir> 编译的临时文件会放在builddir里(这样比较好管理,编译完就可以把它删除了)
--stagedir= <stagedir> 存放编译后库文件的路径,默认是stage
--build-type= complete 编译所有版本,不然只会编译一小部分版本(确切地说是相当于:variant=release, threading=multi;link=shared|static;runtime-link=shared)
variant= debug|release 决定编译什么版本(Debug or Release?)
link= static|shared 决定使用静态库还是动态库。
threading= single|multi 决定使用单线程还是多线程库。
runtime-link= static|shared 决定是静态还是动态链接C/C++标准库。
--with- <library> 只编译指定的库,如输入--with-regex就只编译regex库了。
--show- libraries 显示需要编译的库名称