Skip to content

Instantly share code, notes, and snippets.

@bluekyu
Last active September 22, 2017 17:33
Show Gist options
  • Save bluekyu/7984a33ae9bddfe62d1931164b3a63b3 to your computer and use it in GitHub Desktop.
Save bluekyu/7984a33ae9bddfe62d1931164b3a63b3 to your computer and use it in GitHub Desktop.
boost installation script
@echo off
@REM First, run bootstrap.bat
@REM runtime-link: Multithreaded (static) OR Multithreaded DLL (shared)
SET INSTALL_PREFIX=C:\boost
SET THREADS=8
SET TOOLSET=msvc-14.1
SET ADDRESS_MODEL=64
.\b2 install -d0 -j%THREADS% --prefix=%INSTALL_PREFIX% toolset=%TOOLSET% address-model=%ADDRESS_MODEL% runtime-link=shared threading=multi link=static,shared
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment