diff options
author | arseny.kapoulkine <arseny.kapoulkine@99668b35-9821-0410-8761-19e4c4f06640> | 2009-10-30 20:06:00 +0000 |
---|---|---|
committer | arseny.kapoulkine <arseny.kapoulkine@99668b35-9821-0410-8761-19e4c4f06640> | 2009-10-30 20:06:00 +0000 |
commit | 53468284883030fff8667fee67c3ba73b8f2c260 (patch) | |
tree | 5da7649aed1b5a1cb7abc37c208276c3d7730040 /Jamrules.jam | |
parent | a70f6b1a70aa1c31cedd3659e070bc46a8722fc1 (diff) |
tests: Minor fixes, added autotest script
git-svn-id: http://pugixml.googlecode.com/svn/trunk@196 99668b35-9821-0410-8761-19e4c4f06640
Diffstat (limited to 'Jamrules.jam')
-rw-r--r-- | Jamrules.jam | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/Jamrules.jam b/Jamrules.jam index 307e192..ed9c32c 100644 --- a/Jamrules.jam +++ b/Jamrules.jam @@ -64,6 +64,11 @@ else if ( $(toolset:I=^msvc) ) {
CCFLAGS += /EHsc ;
}
+ else if ( $(toolset) = "msvc6" || $(toolset) = "msvc71" )
+ {
+ # No no-exception STL in MSVC6, buggy no-exception STL in MSVC71
+ CCFLAGS += /EHsc ;
+ }
else
{
CCFLAGS += /D_HAS_EXCEPTIONS=0 ;
|