diff options
author | Remko Tronçon <git@el-tramo.be> | 2013-03-02 19:07:24 (GMT) |
---|---|---|
committer | Remko Tronçon <git@el-tramo.be> | 2013-03-02 19:07:24 (GMT) |
commit | 72e0ddea7ca098cf824f4c47057f72157f62f046 (patch) | |
tree | 65c9d609c79a7b8b43511be0a1ad6a3de80a69f0 /BuildTools | |
parent | 2846c236c7a6153419c545cfb09fff1b13fe9427 (diff) | |
download | swift-72e0ddea7ca098cf824f4c47057f72157f62f046.zip swift-72e0ddea7ca098cf824f4c47057f72157f62f046.tar.bz2 |
Disable some more warnings.
Change-Id: I30065deb10749618cdd4a3042e9d494ddc6c063d
Diffstat (limited to 'BuildTools')
-rw-r--r-- | BuildTools/SCons/SConscript.boot | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/BuildTools/SCons/SConscript.boot b/BuildTools/SCons/SConscript.boot index cf4ef6a..4f68b1b 100644 --- a/BuildTools/SCons/SConscript.boot +++ b/BuildTools/SCons/SConscript.boot @@ -235,6 +235,9 @@ else : "-Wno-exit-time-destructors", # Used a lot in e.g. CPPUnit "-Wno-c++98-compat-pedantic", # We do different things that violate this, but they could be fixed "-Wno-global-constructors", # We depend on this for e.g. string constants + "-Wno-disabled-macro-expansion", # Caused due to system headers + "-Wno-c++11-extensions", # We use C++11; turn this off when we use -std=c++11 + "-Wno-pedantic", # Fix these when we have time "-Wno-padded", ]) else : |