diff options
author | Remko Tronçon <git@el-tramo.be> | 2010-06-09 18:37:20 (GMT) |
---|---|---|
committer | Remko Tronçon <git@el-tramo.be> | 2010-06-09 18:37:20 (GMT) |
commit | b3b77f1d4a85a9a933b1a913a90b57a0e2db42a3 (patch) | |
tree | 687cbc55d73155be38adcd00b275f10bc6e5c947 /BuildTools/SCons | |
parent | d94f950b51dbf4822ebebeb4e27d12002dc1b09e (diff) | |
download | swift-b3b77f1d4a85a9a933b1a913a90b57a0e2db42a3.zip swift-b3b77f1d4a85a9a933b1a913a90b57a0e2db42a3.tar.bz2 |
Fixed compilation warnings.
Diffstat (limited to 'BuildTools/SCons')
-rw-r--r-- | BuildTools/SCons/SConstruct | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/BuildTools/SCons/SConstruct b/BuildTools/SCons/SConstruct index f14fae6..a8c8529 100644 --- a/BuildTools/SCons/SConstruct +++ b/BuildTools/SCons/SConstruct @@ -110,7 +110,7 @@ if env["warnings"] : if env["PLATFORM"] == "win32" : env.Append(CCFLAGS = ["/Wall"]) else : - env.Append(CCFLAGS = ["-W", "-Wall", "-Wnon-virtual-dtor"]) + env.Append(CXXFLAGS = ["-W", "-Wall", "-Wnon-virtual-dtor"]) #env.Append(CCFLAGS = ["-W", "-Wall", "-Wredundant-decls", "-pedantic", "-Wno-long-long", "-Woverloaded-virtual", "-Wundef", "-Wfloat-equal", "-Wold-style-cast"]) gccVersion = env["CCVERSION"].split(".") if gccVersion >= ["4", "5", "0"] : |