For some reason i can no longer specify the toolset to use ...when i run build.bat mingw on my windows machine.. it defaults to msvc. Inside user-config.jam I have using mingw : : C://Dev-Cpp//bin//gcc ; but it keeps using msvc build.
I have compiled boost 1.34.1 with gcc 4.2.1 (TDM-GCC) http://www.tdragon.net/recentgcc/ The below is my compile batch file @rem ------------- @set PYTHON_VERSION=2.4 @SET PYTHON_ROOT=c:\python24 @set BASEDIR=C:\HShen\boost @set BZIP2_SOURCE=%BASEDIR%\bzip2 @set ZLIB_SOURCE=%BASEDIR%\zlib bjam --toolset=gcc-4.2.1 threading=multi runtime-link=shared runtime-link=shared --with-date_time --with-filesystem --with-iostreams --with-program_options --with-python --with-regex --with-signals --with-test --with-thread --layout=system stage @rem bjam --toolset=gcc-4.2.1 threading=multi runtime-link=shared link=static --with-date_time --with-filesystem --with-iostreams --with-program_options --with-python --with-regex --with-signals --with-test --with-thread --layout=system stage @rem ------------- chun ping wang ??:
For some reason i can no longer specify the toolset to use ...when i run build.bat mingw on my windows machine.. it defaults to msvc.
Inside user-config.jam I have
using mingw : : C://Dev-Cpp//bin//gcc ;
but it keeps using msvc build. ------------------------------------------------------------------------
_______________________________________________ Boost-users mailing list Boost-users@lists.boost.org http://lists.boost.org/mailman/listinfo.cgi/boost-users
chun ping wang wrote:
For some reason i can no longer specify the toolset to use ...when i run build.bat mingw on my windows machine.. it defaults to msvc.
That works for me, so I'm somewhat at a loss. Is:
cd boost-root\tools\jam\src build.bat mingw
What you did? What output did you get?
Inside user-config.jam I have
using mingw : : C://Dev-Cpp//bin//gcc ;
but it keeps using msvc build.
OK, that has no effect on building the bjam executable. You could make your life easier and just download the prebuilt bjam, which also happens to be a newer version than the one in 1.34.1. -- -- Grafik - Don't Assume Anything -- Redshift Software, Inc. - http://redshift-software.com -- rrivera/acm.org - grafik/redshift-software.com -- 102708583/icq - grafikrobot/aim - grafikrobot/yahoo
C:\Boost\boost-jam-3.1.14>build.bat mingw
###
### Using 'msvc' toolset.
###
C:\Boost\boost-jam-3.1.14>rd /S /Q bootstrap
C:\Boost\boost-jam-3.1.14>md bootstrap
As you notice it tries to find msvc toolset.
On 7/25/07, Rene Rivera
chun ping wang wrote:
For some reason i can no longer specify the toolset to use ...when i run build.bat mingw on my windows machine.. it defaults to msvc.
That works for me, so I'm somewhat at a loss. Is:
cd boost-root\tools\jam\src build.bat mingw
What you did? What output did you get?
Inside user-config.jam I have
using mingw : : C://Dev-Cpp//bin//gcc ;
but it keeps using msvc build.
OK, that has no effect on building the bjam executable. You could make your life easier and just download the prebuilt bjam, which also happens to be a newer version than the one in 1.34.1.
-- -- Grafik - Don't Assume Anything -- Redshift Software, Inc. - http://redshift-software.com -- rrivera/acm.org - grafik/redshift-software.com -- 102708583/icq - grafikrobot/aim - grafikrobot/yahoo
_______________________________________________ Boost-users mailing list Boost-users@lists.boost.org http://lists.boost.org/mailman/listinfo.cgi/boost-users
participants (3)
-
chun ping wang
-
Huifeng SHEN
-
Rene Rivera