[Lldb-commits] [lldb] r195930 - Also silent -Wno-cast-qual in the SWIG Python wrapper. Remove a huge number of warnings

Sylvestre Ledru sylvestre at debian.org
Thu Nov 28 10:11:34 PST 2013


Author: sylvestre
Date: Thu Nov 28 12:11:34 2013
New Revision: 195930

URL: http://llvm.org/viewvc/llvm-project?rev=195930&view=rev
Log:
Also silent -Wno-cast-qual in the SWIG Python wrapper. Remove a huge number of warnings

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=195930&r1=195929&r2=195930&view=diff
==============================================================================
--- lldb/trunk/source/Interpreter/Makefile (original)
+++ lldb/trunk/source/Interpreter/Makefile Thu Nov 28 12:11:34 2013
@@ -23,7 +23,7 @@ EXTRA_OPTIONS += -Wno-four-char-constant
 
 # 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
+EXTRA_OPTIONS += -Wno-missing-field-initializers -Wno-self-assign -Wno-sometimes-uninitialized -Wno-cast-qual
 
 PYTHON_DIR := $(PROJ_OBJ_ROOT)/$(BuildMode)
 





More information about the lldb-commits mailing list