|
Boost-Commit : |
From: technews_at_[hidden]
Date: 2008-01-01 23:06:28
Author: turkanis
Date: 2008-01-01 23:06:27 EST (Tue, 01 Jan 2008)
New Revision: 42410
URL: http://svn.boost.org/trac/boost/changeset/42410
Log:
configured local toolsets, including msvc-9.0express
Text files modified:
branches/iostreams_dev/tools/build/v2/tools/msvc.jam | 5 ++---
branches/iostreams_dev/tools/build/v2/user-config.jam | 16 ++++++++++++----
2 files changed, 14 insertions(+), 7 deletions(-)
Modified: branches/iostreams_dev/tools/build/v2/tools/msvc.jam
==============================================================================
--- branches/iostreams_dev/tools/build/v2/tools/msvc.jam (original)
+++ branches/iostreams_dev/tools/build/v2/tools/msvc.jam 2008-01-01 23:06:27 EST (Tue, 01 Jan 2008)
@@ -232,11 +232,10 @@
{
# Even if version is not explicitly specified, try to detect the version
# from the path.
- if [ MATCH "(Microsoft Visual Studio 9)" : $(command) ]
+ if [ MATCH "(Microsoft Visual Studio 9.0)" : $(command) ]
{
version = 9.0 ;
- }
- if [ MATCH "(Microsoft Visual Studio 8)" : $(command) ]
+ } else if [ MATCH "(Microsoft Visual Studio 8)" : $(command) ]
{
version = 8.0 ;
}
Modified: branches/iostreams_dev/tools/build/v2/user-config.jam
==============================================================================
--- branches/iostreams_dev/tools/build/v2/user-config.jam (original)
+++ branches/iostreams_dev/tools/build/v2/user-config.jam 2008-01-01 23:06:27 EST (Tue, 01 Jan 2008)
@@ -37,25 +37,33 @@
# http://boost.org/boost-build2/doc/html/bbv2/advanced.html#bbv2.advanced.jam_language
#
-
-
# GCC configuration
# Configure gcc (default version)
-# using gcc ;
+
+using gcc ;
# Configure specific gcc version, giving alternative name to use
# using gcc : 3.2 : g++-3.2 ;
# MSVC configuration
+using msvc : 8.0 ;
+
# Configure msvc (default version, searched in standard location
# and PATH).
# using msvc ;
# Borland configuration
-# using borland ;
+#using borland : 5.8.2 : "C:\Program Files\Borland\BDS\4.0"
+
+#using borland : 5.6.4 : "C:\Program Files\Borland\CBuilder6\bin"
+
+
+# CodeWarrior configuration
+
+#using cw : 9.2 : "C:\Program Files\Metrowerks\CodeWarrior" ;
# STLPort configuration
Boost-Commit list run by bdawes at acm.org, david.abrahams at rcn.com, gregod at cs.rpi.edu, cpdaniel at pacbell.net, john at johnmaddock.co.uk