forked from OSchip/llvm-project
Makesure the -cppflags also uses the CPP.BaseFlags as the CPP.Defines only
contains some of the defines but not all CPP flags. llvm-svn: 38487
This commit is contained in:
parent
fd8e641c1e
commit
1da59dd6dd
|
@ -20,8 +20,8 @@ include $(LEVEL)/Makefile.common
|
|||
ifeq ($(HAVE_PERL),1)
|
||||
|
||||
# Combine preprocessor flags (except for -I) and CXX flags.
|
||||
SUB_CPPFLAGS = ${CPP.Defines}
|
||||
SUB_CFLAGS = ${CPP.BaseFlags} ${C.Flags}
|
||||
SUB_CPPFLAGS = ${CPP.BaseFlags}
|
||||
SUB_CFLAGS = ${CPP.BaseFlags} ${C.Flags}
|
||||
SUB_CXXFLAGS = ${CPP.BaseFlags} ${CXX.Flags}
|
||||
|
||||
# This is blank for now. We need to be careful about adding stuff here:
|
||||
|
|
Loading…
Reference in New Issue