diff options
author | arseny.kapoulkine <arseny.kapoulkine@99668b35-9821-0410-8761-19e4c4f06640> | 2010-04-20 20:46:18 +0000 |
---|---|---|
committer | arseny.kapoulkine <arseny.kapoulkine@99668b35-9821-0410-8761-19e4c4f06640> | 2010-04-20 20:46:18 +0000 |
commit | dc0a2a815b9afd89c382bfb1a30877e814dd3458 (patch) | |
tree | b09120ada2774a96ac2771745be600f971cdc35c | |
parent | 20edc02ff7f8b9c2558bcb80816a18cc9fca710d (diff) |
unicode: Default toolset for Unix systems is gcc
git-svn-id: http://pugixml.googlecode.com/svn/trunk@279 99668b35-9821-0410-8761-19e4c4f06640
-rw-r--r-- | Jamfile.jam | 9 |
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) )
|