forked from OSchip/llvm-project
Remove trailing slashes from include paths. Some versions of mingw don't like them.
llvm-svn: 77188
This commit is contained in:
parent
0f44237aef
commit
729749d34d
|
@ -13,7 +13,7 @@ include $(LEVEL)/Makefile.config
|
|||
|
||||
LIBRARYNAME = UnitTestMain
|
||||
BUILD_ARCHIVE = 1
|
||||
CPP.Flags += -I$(LLVM_SRC_ROOT)/utils/unittest/googletest/include/
|
||||
CPP.Flags += -I$(LLVM_SRC_ROOT)/utils/unittest/googletest/include
|
||||
CPP.Flags += -Wno-variadic-macros
|
||||
|
||||
PARALLEL_DIRS = ADT ExecutionEngine Support VMCore MC
|
||||
|
|
|
@ -15,7 +15,7 @@ NO_VARIADIC_MACROS := $(shell $(CXX) -Wno-variadic-macros -fsyntax-only -xc /dev
|
|||
|
||||
LIBRARYNAME = GoogleTest
|
||||
BUILD_ARCHIVE = 1
|
||||
CPP.Flags += -I$(LLVM_SRC_ROOT)/utils/unittest/googletest/include/
|
||||
CPP.Flags += -I$(LLVM_SRC_ROOT)/utils/unittest/googletest/include
|
||||
CPP.Flags += $(NO_MISSING_FIELD_INITIALIZERS) $(NO_VARIADIC_MACROS)
|
||||
|
||||
ifeq ($(OS),MingW)
|
||||
|
|
Loading…
Reference in New Issue