summaryrefslogtreecommitdiff
path: root/Jamfile.jam
diff options
context:
space:
mode:
authorarseny.kapoulkine <arseny.kapoulkine@99668b35-9821-0410-8761-19e4c4f06640>2010-04-20 20:46:18 +0000
committerarseny.kapoulkine <arseny.kapoulkine@99668b35-9821-0410-8761-19e4c4f06640>2010-04-20 20:46:18 +0000
commitdc0a2a815b9afd89c382bfb1a30877e814dd3458 (patch)
treeb09120ada2774a96ac2771745be600f971cdc35c /Jamfile.jam
parent20edc02ff7f8b9c2558bcb80816a18cc9fca710d (diff)
unicode: Default toolset for Unix systems is gcc
git-svn-id: http://pugixml.googlecode.com/svn/trunk@279 99668b35-9821-0410-8761-19e4c4f06640
Diffstat (limited to 'Jamfile.jam')
-rw-r--r--Jamfile.jam9
1 files changed, 8 insertions, 1 deletions
diff --git a/Jamfile.jam b/Jamfile.jam
index 1d20b86..2e3a59f 100644
--- a/Jamfile.jam
+++ b/Jamfile.jam
@@ -13,7 +13,14 @@
# default toolset/configuration
if ( ! $(toolset) )
{
- exit You should specify a toolset ;
+ if ( $(UNIX) )
+ {
+ toolset = "gcc" ;
+ }
+ else
+ {
+ exit You should specify a toolset ;
+ }
}
if ( ! $(configuration) )