diff options
author | Remko Tronçon <git@el-tramo.be> | 2010-04-15 21:00:11 (GMT) |
---|---|---|
committer | Remko Tronçon <git@el-tramo.be> | 2010-04-15 21:00:11 (GMT) |
commit | bd8af5feb9b61f42c15cab77b19a58dfd93afa06 (patch) | |
tree | c25c3c3f26ab432d94666c2bbaf6c57c0e447fce /BuildTools | |
parent | 0f8fa2b135fb23076985e4f2289c29f5ef51e150 (diff) | |
download | swift-contrib-bd8af5feb9b61f42c15cab77b19a58dfd93afa06.zip swift-contrib-bd8af5feb9b61f42c15cab77b19a58dfd93afa06.tar.bz2 |
Fix for the previous fix.
Diffstat (limited to 'BuildTools')
-rw-r--r-- | BuildTools/SCons/SConstruct | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/BuildTools/SCons/SConstruct b/BuildTools/SCons/SConstruct index 5f4a984..136479a 100644 --- a/BuildTools/SCons/SConstruct +++ b/BuildTools/SCons/SConstruct @@ -100,7 +100,8 @@ if env["warnings"] : else : env.Append(CCFLAGS = ["-W", "-Wall"]) #env.Append(CCFLAGS = ["-W", "-Wall", "-Wredundant-decls", "-pedantic", "-Wno-long-long", "-Woverloaded-virtual", "-Wundef", "-Wfloat-equal", "-Wold-style-cast"]) - if env["CCVERSION"].split(".")[0] > 4 or onv["CCVERSION"].split(".")[1] >= 5 : + gccVersion = env["CCVERSION"].split(".") + if gccVersion >= ["4", "5", "0"] : env.Append(CCFLAGS = ["-Wlogical-op"]) if env.get("coverage", 0) : |