Advertisement
Guest User

Untitled

a guest
Apr 23rd, 2019
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.22 KB | None | 0 0
  1. @rem build all variants needed of Boost library
  2. @rem debug/release, static/dynamic CRT linkage, 32/64 bit
  3. @rem vc10/vc12/vc14/vc141/vc142
  4. @rem run from %boost_root% directory
  5.  
  6. pushd %boost_root%
  7.  
  8. call .\bootstrap.bat --without-python
  9.  
  10. @rem Visual Studio 2019
  11. .\b2 --without-python toolset=msvc-14.2 address-model=32 runtime-link=shared --stagedir=stage
  12. .\b2 --without-python toolset=msvc-14.2 address-model=32 runtime-link=static --stagedir=stage
  13. .\b2 --without-python toolset=msvc-14.2 address-model=64 runtime-link=shared --stagedir=stage64
  14. .\b2 --without-python toolset=msvc-14.2 address-model=64 runtime-link=static --stagedir=stage64
  15.  
  16. @rem Visual Studio 2017
  17. .\b2 --without-python toolset=msvc-14.1 address-model=32 runtime-link=shared --stagedir=stage
  18. .\b2 --without-python toolset=msvc-14.1 address-model=32 runtime-link=static --stagedir=stage
  19. .\b2 --without-python toolset=msvc-14.1 address-model=64 runtime-link=shared --stagedir=stage64
  20. .\b2 --without-python toolset=msvc-14.1 address-model=64 runtime-link=static --stagedir=stage64
  21.  
  22. @rem Visual Studio 2015
  23. .\b2 --without-python toolset=msvc-14.0 address-model=32 runtime-link=shared --stagedir=stage
  24. .\b2 --without-python toolset=msvc-14.0 address-model=32 runtime-link=static --stagedir=stage
  25. .\b2 --without-python toolset=msvc-14.0 address-model=64 runtime-link=shared --stagedir=stage64
  26. .\b2 --without-python toolset=msvc-14.0 address-model=64 runtime-link=static --stagedir=stage64
  27.  
  28. @rem Visual Studio 2013
  29. .\b2 --without-python toolset=msvc-12.0 address-model=32 runtime-link=shared --stagedir=stage
  30. .\b2 --without-python toolset=msvc-12.0 address-model=32 runtime-link=static --stagedir=stage
  31. .\b2 --without-python toolset=msvc-12.0 address-model=64 runtime-link=shared --stagedir=stage64
  32. .\b2 --without-python toolset=msvc-12.0 address-model=64 runtime-link=static --stagedir=stage64
  33.  
  34. @rem Visual Studio 2010
  35. .\b2 --without-python toolset=msvc-10.0 address-model=32 runtime-link=shared --stagedir=stage
  36. .\b2 --without-python toolset=msvc-10.0 address-model=32 runtime-link=static --stagedir=stage
  37. .\b2 --without-python toolset=msvc-10.0 address-model=64 runtime-link=shared --stagedir=stage64
  38. .\b2 --without-python toolset=msvc-10.0 address-model=64 runtime-link=static --stagedir=stage64
  39.  
  40. popd
  41.  
  42. :done
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement