forked from OSchip/llvm-project
Remove another of the llvm given warnings from the list of
warnings we compile with because of SWIG generated code. llvm-svn: 215778
This commit is contained in:
parent
d18cda620c
commit
29ebb01201
|
|
@ -22,9 +22,10 @@ include $(LLDB_LEVEL)/Makefile
|
||||||
# Drop -Wfour-char-constants, which we are not currently clean with.
|
# Drop -Wfour-char-constants, which we are not currently clean with.
|
||||||
EXTRA_OPTIONS += -Wno-four-char-constants
|
EXTRA_OPTIONS += -Wno-four-char-constants
|
||||||
|
|
||||||
# Drop -Wself-assign, -Wmissing-field-initializers and -Wsometimes-uninitialized,
|
# Drop -Wself-assign, -Wmissing-field-initializers, -Wsometimes-uninitialized,
|
||||||
# which we are not currently clean with (due to SWIG generated cpp source).
|
# -Wcast-qual, and -Wdeprecated-register which we are not clean with due to SWIG
|
||||||
EXTRA_OPTIONS += -Wno-missing-field-initializers -Wno-self-assign -Wno-sometimes-uninitialized -Wno-cast-qual
|
# 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)
|
PYTHON_DIR := $(PROJ_OBJ_ROOT)/$(BuildMode)
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue