diff options
author | Sylvestre Ledru <sylvestre@debian.org> | 2013-11-28 18:11:34 +0000 |
---|---|---|
committer | Sylvestre Ledru <sylvestre@debian.org> | 2013-11-28 18:11:34 +0000 |
commit | 3b5b16cdff57d94cbc7dadedc64bef4b642d59f8 (patch) | |
tree | b898a830872cce4d2c203870c25406753e055071 /lldb/source/Interpreter | |
parent | 226e10edff2c0e9b5753ca8c0d17e14fef83d056 (diff) | |
download | bcm5719-llvm-3b5b16cdff57d94cbc7dadedc64bef4b642d59f8.tar.gz bcm5719-llvm-3b5b16cdff57d94cbc7dadedc64bef4b642d59f8.zip |
Also silent -Wno-cast-qual in the SWIG Python wrapper. Remove a huge number of warnings
llvm-svn: 195930
Diffstat (limited to 'lldb/source/Interpreter')
-rw-r--r-- | lldb/source/Interpreter/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/source/Interpreter/Makefile b/lldb/source/Interpreter/Makefile index 05a4dd83e04..5a6ffba5d2a 100644 --- a/lldb/source/Interpreter/Makefile +++ b/lldb/source/Interpreter/Makefile @@ -23,7 +23,7 @@ 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 +EXTRA_OPTIONS += -Wno-missing-field-initializers -Wno-self-assign -Wno-sometimes-uninitialized -Wno-cast-qual PYTHON_DIR := $(PROJ_OBJ_ROOT)/$(BuildMode) |