diff options
author | arseny.kapoulkine <arseny.kapoulkine@99668b35-9821-0410-8761-19e4c4f06640> | 2010-05-25 21:50:46 +0000 |
---|---|---|
committer | arseny.kapoulkine <arseny.kapoulkine@99668b35-9821-0410-8761-19e4c4f06640> | 2010-05-25 21:50:46 +0000 |
commit | 77c9a23bfbf748c70b3ab33b06c5b188eaa3bd25 (patch) | |
tree | ef313561bef22abede0140b32be364b45fb4528a /Jamfile.jam | |
parent | cd9bc5fa836fdf196dc65f7f75631f80849eed1e (diff) |
Added build support for Sun C++
git-svn-id: http://pugixml.googlecode.com/svn/trunk@453 99668b35-9821-0410-8761-19e4c4f06640
Diffstat (limited to 'Jamfile.jam')
-rw-r--r-- | Jamfile.jam | 6 |
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) ;
|