summaryrefslogtreecommitdiff
path: root/Jamfile.jam
diff options
context:
space:
mode:
Diffstat (limited to 'Jamfile.jam')
-rw-r--r--Jamfile.jam6
1 files changed, 5 insertions, 1 deletions
diff --git a/Jamfile.jam b/Jamfile.jam
index 1ebdba3..bc47f10 100644
--- a/Jamfile.jam
+++ b/Jamfile.jam
@@ -13,7 +13,11 @@
# default toolset/configuration
if ( ! $(toolset) )
{
- if ( $(UNIX) )
+ if ( $(OS) = SOLARIS )
+ {
+ toolset = suncc ;
+ }
+ else if ( $(UNIX) )
{
local GCCVERSION = [ Subst [ Shell "gcc -dumpversion" ] : $(NEWLINE) ] ;
toolset = "gcc"$(GCCVERSION) ;