build: Add some -Wno's for things LLDB isn't clean on yet.

llvm-svn: 143383
This commit is contained in:
Daniel Dunbar
2011-10-31 22:50:55 +00:00
parent 5ae8732394
commit 807d2c6b27

View File

@@ -60,6 +60,13 @@ CXX.Flags += -fno-strict-aliasing
# "#pragma mark" construct which GCC warns about on platforms other than Darwin.
EXTRA_OPTIONS += -Wno-unknown-pragmas
# Drop -Wsign-compare, which we are not currently clean with.
EXTRA_OPTIONS += -Wno-sign-compare
# Drop -Wunused-function and -Wunneeded-internal-declaration, which we are not
# currently clean with.
EXTRA_OPTIONS += -Wno-sign-compare -Wno-unused-function -Wno-unneeded-internal-declaration
###
# LLDB Top Level specific stuff.