diff options
Diffstat (limited to 'Jamfile.jam')
-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) )
|