Build boost with msvc 14.1 ( VS2017 RC)

前端 未结 4 1986
广开言路
广开言路 2020-12-04 12:11

I am trying to build boost 1.63 with the lastest msvc 14.1 and VS2017 RC. So I did everything I do normally, I opened the Development Cmd and then I run the bootstrap.bat an

4条回答
  •  情书的邮戳
    2020-12-04 13:08

    Based on KindDragons and CPlusPlus OOA and D answers I compiled Boost 1.63. For 64bit. Run "x64 Native Tools Command Prompt for VS 2017" command prompt:

    1) Run: bootstrap.bat

    2) open project-config.jam. Here is mine:

    import option ; 
    
    using msvc : 14.0 : "c:\Program Files (x86)\Microsoft Visual Studio\2017\Community\VC\Tools\MSVC\14.10.25017\bin\HostX64\x64\cl.exe"; 
    
    option.set keep-going : false ;
    

    The part: 14.10.25017 keep changing with updates to your Windows SDK. So update it accordingly.

    3) Run b2 toolset=msvc-14.0 address-model=64

提交回复
热议问题