summaryrefslogtreecommitdiff
path: root/Jamrules.jam
diff options
context:
space:
mode:
Diffstat (limited to 'Jamrules.jam')
-rw-r--r--Jamrules.jam7
1 files changed, 5 insertions, 2 deletions
diff --git a/Jamrules.jam b/Jamrules.jam
index 4e5c20f..9ceb265 100644
--- a/Jamrules.jam
+++ b/Jamrules.jam
@@ -153,12 +153,10 @@ else if ( $(toolset:I=^ic) )
if ( $(toolset) = ic11 )
{
postfix = "\\ia32" ;
- CCFLAGS += /fp:precise ;
}
else if ( $(toolset) = ic11_x64 )
{
postfix = "\\intel64" ;
- CCFLAGS += /fp:precise ;
}
else
{
@@ -177,6 +175,11 @@ else if ( $(toolset:I=^ic) )
CCFLAGS += /D$(defines) ;
+ if ( $(toolset) != ic8 )
+ {
+ CCFLAGS += /fp:precise ;
+ }
+
if ( $(configuration) = "debug" )
{
CCFLAGS += /D_DEBUG /Od /MTd ;