[Lldb-commits] [lldb] r215778 - Remove another of the llvm given warnings from the list of

Eric Christopher echristo at gmail.com
Fri Aug 15 15:23:41 PDT 2014


Author: echristo
Date: Fri Aug 15 17:23:40 2014
New Revision: 215778

URL: http://llvm.org/viewvc/llvm-project?rev=215778&view=rev
Log:
Remove another of the llvm given warnings from the list of
warnings we compile with because of SWIG generated code.

Modified:
    lldb/trunk/source/Interpreter/Makefile

Modified: lldb/trunk/source/Interpreter/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/source/Interpreter/Makefile?rev=215778&r1=215777&r2=215778&view=diff
==============================================================================
--- lldb/trunk/source/Interpreter/Makefile (original)
+++ lldb/trunk/source/Interpreter/Makefile Fri Aug 15 17:23:40 2014
@@ -22,9 +22,10 @@ include $(LLDB_LEVEL)/Makefile
 # Drop -Wfour-char-constants,  which we are not currently clean with.
 EXTRA_OPTIONS += -Wno-four-char-constants
 
-# Drop -Wself-assign, -Wmissing-field-initializers and -Wsometimes-uninitialized,
-# which we are not currently clean with (due to SWIG generated cpp source).
-EXTRA_OPTIONS += -Wno-missing-field-initializers -Wno-self-assign -Wno-sometimes-uninitialized -Wno-cast-qual
+# Drop -Wself-assign, -Wmissing-field-initializers, -Wsometimes-uninitialized,
+# -Wcast-qual, and -Wdeprecated-register which we are not clean with due to SWIG
+# generated cpp source.
+EXTRA_OPTIONS += -Wno-missing-field-initializers -Wno-self-assign -Wno-sometimes-uninitialized -Wno-cast-qual -Wno-deprecated-register
 
 PYTHON_DIR := $(PROJ_OBJ_ROOT)/$(BuildMode)
 





More information about the lldb-commits mailing list