diff options
author | arseny.kapoulkine <arseny.kapoulkine@99668b35-9821-0410-8761-19e4c4f06640> | 2010-05-17 07:42:34 +0000 |
---|---|---|
committer | arseny.kapoulkine <arseny.kapoulkine@99668b35-9821-0410-8761-19e4c4f06640> | 2010-05-17 07:42:34 +0000 |
commit | dd9de685eb1af432a88af7840ca01f052ddb0c7e (patch) | |
tree | 3237a1c6a058f13796aaf35d1bbc44ac3765e6f9 /Jamfile.jam | |
parent | 2412872c09d83916faea53f66088b98027898e6d (diff) |
tests: gcc version is now specified upon building
git-svn-id: http://pugixml.googlecode.com/svn/trunk@427 99668b35-9821-0410-8761-19e4c4f06640
Diffstat (limited to 'Jamfile.jam')
-rw-r--r-- | Jamfile.jam | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Jamfile.jam b/Jamfile.jam index beba202..e3e5e9b 100644 --- a/Jamfile.jam +++ b/Jamfile.jam @@ -41,7 +41,7 @@ else BUILD = build/$(toolset)/standard/$(configuration) ;
}
-if ( $(toolset:I=^mingw) || $(toolset) = gcc )
+if ( $(toolset:I=^mingw) || $(toolset:I=^gcc) )
{
CCFLAGS = -fprofile-arcs -ftest-coverage ;
LDFLAGS = -fprofile-arcs ;
|