[Lldb-commits] [lldb] r143383 - /lldb/trunk/Makefile

Daniel Dunbar daniel at zuster.org
Mon Oct 31 15:50:55 PDT 2011


Author: ddunbar
Date: Mon Oct 31 17:50:55 2011
New Revision: 143383

URL: http://llvm.org/viewvc/llvm-project?rev=143383&view=rev
Log:
build: Add some -Wno's for things LLDB isn't clean on yet.

Modified:
    lldb/trunk/Makefile

Modified: lldb/trunk/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/Makefile?rev=143383&r1=143382&r2=143383&view=diff
==============================================================================
--- lldb/trunk/Makefile (original)
+++ lldb/trunk/Makefile Mon Oct 31 17:50:55 2011
@@ -60,6 +60,13 @@
 # "#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.
 





More information about the lldb-commits mailing list