summaryrefslogtreecommitdiff
path: root/Jamrules.jam
diff options
context:
space:
mode:
authorarseny.kapoulkine <arseny.kapoulkine@99668b35-9821-0410-8761-19e4c4f06640>2011-10-08 04:14:39 +0000
committerarseny.kapoulkine <arseny.kapoulkine@99668b35-9821-0410-8761-19e4c4f06640>2011-10-08 04:14:39 +0000
commit5c02ac5645c44f7f3d01664d9c3c9027f5fcff5a (patch)
treedd24bde556d28f535623f71310fe80924133c928 /Jamrules.jam
parent696a0ea588fd632d006e60c043a9498441b46347 (diff)
Added icc toolset support for Linux/MacOS X
git-svn-id: http://pugixml.googlecode.com/svn/trunk@823 99668b35-9821-0410-8761-19e4c4f06640
Diffstat (limited to 'Jamrules.jam')
-rw-r--r--Jamrules.jam195
1 files changed, 125 insertions, 70 deletions
diff --git a/Jamrules.jam b/Jamrules.jam
index e6d21b4..b6b128f 100644
--- a/Jamrules.jam
+++ b/Jamrules.jam
@@ -211,81 +211,136 @@ else if ( $(toolset:I=^msvc) )
}
else if ( $(toolset:I=^ic) )
{
- if ( $(toolset) = ic8 || $(toolset) = ic9 )
- {
- msvc = "msvc71" ;
- }
- else
- {
- msvc = "msvc8" ;
- }
-
- if ( $(toolset) = ic11 )
- {
- postfix = "\\ia32" ;
- }
- else if ( $(toolset) = ic11_x64 )
- {
- postfix = "\\intel64" ;
- }
- else
- {
- postfix = "" ;
- }
-
- if ( $(toolset:I=_x64$) )
- {
- msvc_postfix = "\\amd64" ;
- LDFLAGS += /MACHINE:X64 ;
- }
- else
- {
- msvc_postfix = "" ;
- }
-
- rule GetCFlags CONFIG : DEFINES
- {
- local RESULT = /D$(DEFINES) ;
-
- RESULT += /W3 /WX /Qvec_report0 ;
+ if ( $(OS) = NT )
+ {
+ if ( $(toolset) = ic8 || $(toolset) = ic9 )
+ {
+ msvc = "msvc71" ;
+ }
+ else
+ {
+ msvc = "msvc8" ;
+ }
- if ( $(toolset) != ic8 )
- {
- RESULT += /fp:precise ;
- }
+ if ( $(toolset) = ic11 )
+ {
+ postfix = "\\ia32" ;
+ }
+ else if ( $(toolset) = ic11_x64 )
+ {
+ postfix = "\\intel64" ;
+ }
+ else
+ {
+ postfix = "" ;
+ }
- if ( $(CONFIG) = "debug" )
- {
- RESULT += /D_DEBUG /Od /MTd ;
- }
- else
- {
- RESULT += /DNDEBUG /Ox /MT ;
- }
+ if ( $(toolset:I=_x64$) )
+ {
+ msvc_postfix = "\\amd64" ;
+ LDFLAGS += /MACHINE:X64 ;
+ }
+ else
+ {
+ msvc_postfix = "" ;
+ }
- if ( ! ( PUGIXML_NO_EXCEPTIONS in $(DEFINES) ) )
- {
- RESULT += /EHsc ;
- }
+ rule GetCFlags CONFIG : DEFINES
+ {
+ local RESULT = /D$(DEFINES) ;
+
+ RESULT += /W3 /WX /Qvec_report0 ;
+
+ if ( $(toolset) != ic8 )
+ {
+ RESULT += /fp:precise ;
+ }
+
+ if ( $(CONFIG) = "debug" )
+ {
+ RESULT += /D_DEBUG /Od /MTd ;
+ }
+ else
+ {
+ RESULT += /DNDEBUG /Ox /MT ;
+ }
+
+ if ( ! ( PUGIXML_NO_EXCEPTIONS in $(DEFINES) ) )
+ {
+ RESULT += /EHsc ;
+ }
+
+ return $(RESULT) ;
+ }
- return $(RESULT) ;
- }
+ actions ObjectAction
+ {
+ set PATH=%$(msvc)_PATH%\bin
+ "%$(toolset)_PATH%\bin$(postfix)\icl.exe" /I"%$(msvc)_PATH%\include" /I"%$(msvc)_PATH%\PlatformSDK\Include" /I"%$(toolset)_PATH%\include" /c $(>) /Fo$(<) /nologo $(CCFLAGS)
+ }
+
+ actions LibraryAction
+ {
+ "%$(msvc)_PATH%\bin\lib.exe" /NOLOGO /OUT:$(<) $(>)
+ }
+
+ actions LinkAction
+ {
+ "%$(msvc)_PATH%\bin\link.exe" /SUBSYSTEM:CONSOLE /NOLOGO /OUT:$(<) $(>) /LIBPATH:"%$(toolset)_PATH%\lib$(postfix)" /LIBPATH:"%$(msvc)_PATH%\lib$(msvc_postfix)" /LIBPATH:"%$(msvc)_PATH%\PlatformSDK\lib$(msvc_postfix)" $(LDFLAGS)
+ }
+ }
+ else
+ {
+ rule GetCFlags CONFIG : DEFINES
+ {
+ local RESULT = -D$(DEFINES) ;
+
+ RESULT += -fp-model strict ;
+
+ RESULT += -Wall -Werror -Wcheck ;
+ RESULT += -Wformat -Wformat-security -Wmissing-declarations -Wmissing-prototypes -Wstrict-aliasing ;
+ RESULT += -Wstrict-prototypes -Wpointer-arith -Wuninitialized -Wdeprecated -Wabi ;
+ RESULT += -Wcast-qual -Wunused-function -Wunknown-pragmas -Wmain -Wcomment -Wconversion ;
+ RESULT += -Wreturn-type -Wextra-tokens -Wpragma-once -Wshadow -Woverloaded-virtual -Wtrigraphs ;
+ RESULT += -Wmultichar -Woverflow -Wwrite-strings -Wsign-compare -Wp64 -Wshorten-64-to-32 ;
+
+ if ( $(fulldebug) )
+ {
+ RESULT += -g ;
+ }
+
+ if ( $(CONFIG) = "debug" )
+ {
+ RESULT += -D_DEBUG ;
+ }
+ else
+ {
+ RESULT += -DNDEBUG -O3 ;
+ }
+
+ if ( PUGIXML_NO_EXCEPTIONS in $(DEFINES) )
+ {
+ RESULT += -fno-exceptions ;
+ }
+
+ return $(RESULT) ;
+ }
- actions ObjectAction
- {
- set PATH=%$(msvc)_PATH%\bin
- "%$(toolset)_PATH%\bin$(postfix)\icl.exe" /I"%$(msvc)_PATH%\include" /I"%$(msvc)_PATH%\PlatformSDK\Include" /I"%$(toolset)_PATH%\include" /c $(>) /Fo$(<) /nologo $(CCFLAGS)
- }
-
- actions LibraryAction
- {
- "%$(msvc)_PATH%\bin\lib.exe" /NOLOGO /OUT:$(<) $(>)
- }
-
- actions LinkAction
- {
- "%$(msvc)_PATH%\bin\link.exe" /SUBSYSTEM:CONSOLE /NOLOGO /OUT:$(<) $(>) /LIBPATH:"%$(toolset)_PATH%\lib$(postfix)" /LIBPATH:"%$(msvc)_PATH%\lib$(msvc_postfix)" /LIBPATH:"%$(msvc)_PATH%\PlatformSDK\lib$(msvc_postfix)" $(LDFLAGS)
- }
+ actions ObjectAction
+ {
+ icc -c $(>) -o $(<) $(CCFLAGS)
+ }
+
+ actions LibraryAction
+ {
+ ar rcs $(<) $(>)
+ }
+
+ actions LinkAction
+ {
+ icc $(>) -o $(<) $(LDFLAGS)
+ }
+ }
}
else if ( $(toolset:I=^dmc) )
{