What is wrong building a debug build of boost?
Hi, Til now I have used the following 2 commands to build the boost library: bjam.exe --toolset=msvc --build-type=debug link=static threading=multi stage --stagedir=. bjam.exe --toolset=msvc --build-type=release link=static threading=multi stage --stagedir=. and it has worked with boost 1.37. With boost 1.38 I don't get anymore the debug builds of the library. What it is wrong with this command? I use 3.1.17 of bjam.exe Thanks for any hint! Regards Hansjörg
Hansi wrote:
Hi,
Til now I have used the following 2 commands to build the boost library:
bjam.exe --toolset=msvc --build-type=debug link=static threading=multi stage --stagedir=.
bjam.exe --toolset=msvc --build-type=release link=static threading=multi stage --stagedir=.
and it has worked with boost 1.37.
I don't know what you mean by "worked". Your usage of "--build-type" could never have any effect on anything.
With boost 1.38 I don't get anymore the debug builds of the library. What it is wrong with this command?
The Boost.Build invocation is documented at: http://www.boost.org/boost-build2/doc/html/bbv2/advanced/invocation.html and one of the example shows how to request specific values of the properties, including "variant=debug". - Volodya
The Boost.Build invocation is documented at:
http://www.boost.org/boost-build2/doc/html/bbv2/advanced/invocation.html
and one of the example shows how to request specific values of the properties, including "variant=debug".
thanks...this link is really helpfull. Maybe the link should be also inside the getting started docu... I don't know why but boost 1.37 has worked to build in this way..maybe it was another bjam version.. many thanks
AMDG Hansi wrote:
Til now I have used the following 2 commands to build the boost library:
bjam.exe --toolset=msvc --build-type=debug link=static threading=multi stage --stagedir=.
bjam.exe --toolset=msvc --build-type=release link=static threading=multi stage --stagedir=.
and it has worked with boost 1.37.
With boost 1.38 I don't get anymore the debug builds of the library. What it is wrong with this command? I use 3.1.17 of bjam.exe
Thanks for any hint!
There is no --build-type=debug option. Try just debug or variant=debug In Christ, Steven Watanabe
participants (3)
-
Hansi
-
Steven Watanabe
-
Vladimir Prus