11

I've run the bootstrap batch and then the bjam exe, but as I have MSVC 2010 it generates the -vc100- files in the $boost\stage\lib.

I'm using vc90 libraries so I need the *-vc90-* files, but if I pass the --toolset=msvc-9.0 option to bjam, it gives me the following errors:

...failed compile-c-c++ bin.v2\libs\wave\build\msvc-9.0\release\link-static\threading-multi\instantiate_cpp_exprgrammar.obj...
compile-c-c++ bin.v2\libs\wave\build\msvc-9.0\release\link-static\threading-multi\instantiate_cpp_grammar.obj

that for each file.

(btw: if no option is specified, it generates the libs for the vc100 without problems)

Edited:
Adding the build.log here of the following command:

bjam --toolset=msvc-9.0 --with-filesystem >build.log 2>&1  

Anyone can help me? Thanks!

Danikaze
  • 193
  • 1
  • 8

2 Answers2

12

When compiling with bjam, instead of only --toolset=msvc you can specify actual version like --toolset=msvc-9.0.

Abhijeet Pathak
  • 1,948
  • 3
  • 20
  • 28
8

solved.

Just needed to add VC9 compiler path to the %PATH% system var.

Danikaze
  • 193
  • 1
  • 8