On Mon, Aug 19, 2013 at 9:44 AM, Amann, Julian <julian.amann@tum.de> wrote:
I build boost 1.54.0 this way (Windows 8 with Visual Studio 2012 x64):

b2 address-model=64 toolset=msvc-11.0 --build-type=complete stage --with-filesystem --with-signals --with-system
\bootstrap.bat

I expect to get a file named 'libboost_filesystem-vc110-mt-gd-1_54.lib'
(some boost header file is linking this file via #pragma ...)

Unfortunately I get only a  'boost_filesystem-vc110-mt-gd-1_54.lib' and a 'libboost_filesystem-vc110-mt-sgd-1_54.lib'

Any idea what I am doing wrong?

I have these however I did not use --with-filesystem --with-signals ...

My exact build command was:

pushd .

cd x:\Other\Libraries\Boost_1_54_0

x:/Other/Libraries/boost_1_54_0/bjam.exe -j%NUMBER_OF_PROCESSORS% --without-python --without-mpi address-model=64 --build-dir=x:/x64.3/VC.110/Libraries/Boost-1.54.0/build --prefix=x:/x64.3/VC.110/Libraries/Boost-1.54.0 --toolset=msvc-11.0 --build-type=complete stage install

IF NOT ERRORLEVEL 1 GOTO BUILD
GOTO END

:BUILD
rem nmake
GOTO END
:END

popd


The source folder is x:\Other\Libraries\Boost_1_54_0

the output folder is X:\x64.3\VC.110\Libraries\Boost-1.54.0

John