diff options
author | Eric Christopher <echristo@gmail.com> | 2014-08-15 22:23:40 +0000 |
---|---|---|
committer | Eric Christopher <echristo@gmail.com> | 2014-08-15 22:23:40 +0000 |
commit | 29ebb01201da0344f8ab007344b399aedce1c90c (patch) | |
tree | 80fe3a38a764a7ac27a7769178526c272a1641bd /lldb/source/Interpreter | |
parent | d18cda620c2fd8f0f2c38271388de17608eeda28 (diff) | |
download | bcm5719-llvm-29ebb01201da0344f8ab007344b399aedce1c90c.tar.gz bcm5719-llvm-29ebb01201da0344f8ab007344b399aedce1c90c.zip |
Remove another of the llvm given warnings from the list of
warnings we compile with because of SWIG generated code.
llvm-svn: 215778
Diffstat (limited to 'lldb/source/Interpreter')
-rw-r--r-- | lldb/source/Interpreter/Makefile | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/lldb/source/Interpreter/Makefile b/lldb/source/Interpreter/Makefile index bbdf7be9aa1..d6a51e6ba72 100644 --- a/lldb/source/Interpreter/Makefile +++ b/lldb/source/Interpreter/Makefile @@ -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) |