Building boost 1.61.0 with MinGW 5.3.0

前端 未结 2 711
失恋的感觉
失恋的感觉 2020-12-17 06:14

Has anyone had any success in building boost 1.61.0 for Mingw? I\'ve Googled for this, and all the suggestions that apparently worked well in the past result in errors now.

相关标签:
2条回答
  • 2020-12-17 07:07

    The answer from @antred worked pretty well. Only changes I needed to do to compile boost 1.67.0 is follows:

    • Instead of step 5 and 6 run .\bootstrap.bat gcc
    • At step 10 run b2 --build-dir="C:\Program Files\boost_1_67_0\build" --prefix="C:\Program Files\boost" toolset=gcc install
    0 讨论(0)
  • 2020-12-17 07:10

    Ok, I did get it to work, but apparently the bug in the boost build system discussed here is still in boost 1.61. I worked around that by skipping the libraries that run into this problem and only building the ones that I need. Here's what worked for me.

    1. Download and unzip boost_1_61_0.7z to D:\Dev\Libs\boost\boost_1_61_0
    2. Extend PATH variable to contain bin folder that contains MinGW g++.exe, and make sure no other g++.exe instances appear in PATH before this one (that actually tripped me up the first time, because several programs I've installed come packaged with their own g++ version).
    3. Open cmd window.
    4. Run cd D:\Dev\Libs\boost\boost_1_61_0\tools\build
    5. Run .\bootstrap.bat (if you skip this, step 6 will fail with 'Unknown toolset: mingw' ... WTF???)
    6. Run .\bootstrap.bat mingw
    7. Run .\b2.exe install toolset=gcc --prefix=D:\Dev\Libs\boost\boost_1_61_0\b2_for_mingw
    8. Run cd D:\Dev\Libs\boost\boost_1_61_0
    9. Run set PATH=%PATH%;D:\Dev\Libs\boost\boost_1_61_0\b2_for_mingw\bin
    10. Run b2 toolset=gcc --build-type=complete stage --with-filesystem --with-system (since I only need the filesystem and system libraries).

    EDIT: For boost 1.64, step 5 must be skipped entirely, and in step 6 gcc needs to be specified instead of mingw, as pointed out in the comments by user fest.

    0 讨论(0)
提交回复
热议问题