我下载boost 1.55,解压缩并运行以下内容:
> bootstrap.bat
cl : Command line warning D9035 : option 'GZ' has been deprecated and will be removed in a future release
cl : Command line warning D9036 : use 'RTC1' instead of 'GZ'
cl : Command line warning D9002 : ignoring unknown option '/MLd'
Bootstrapping is done. To build, run:
...
> b2 --build-type=complete --build-dir=build --toolset=msvc-14.0 stage
但是,我收到以下错误:
error: msvc initialization: parameter 'version' inconsistent
error: no value was specified in earlier initialization
error: an explicit value is specified now
按照与MSVC 2012相同的步骤,我没有收到该错误。
如果我改为--toolset=msvc
,那么它就可以了。但是,生成的文件有-vc
而不是-vc140
,这是我想要的。
如何明确指定工具集?它在哪里“在早期初始化中指定”?
(我想这样做的原因是我后来发现了一个奇怪的链接器错误 - 说它正在寻找一些-vc120
个升级库...我不知道为什么。我正试图消除所有可能性。)
答案 0 :(得分:8)
之前指定的版本位于project-config.jam
:
using msvc ;
将其更改为:
using msvc : 14.0 ;