forked from OSchip/llvm-project
[lldb] Remove -nostdlib++ flag from import-std-module/sysroot test
That flag was introduced in Clang 6.0, so this made the test fail with Clang <= 5.0. As it only influences linking builtin libraries like -m which aren't relevant for this test, we can drop this flag. llvm-svn: 372827
This commit is contained in:
parent
f8ecb24822
commit
e5ff8919c4
|
@ -3,7 +3,7 @@
|
||||||
# system headers.
|
# system headers.
|
||||||
NO_TEST_COMMON_H := 1
|
NO_TEST_COMMON_H := 1
|
||||||
|
|
||||||
CXXFLAGS += -I $(SRCDIR)/root/usr/include/c++/include/ -I $(SRCDIR)/root/usr/include/ -nostdinc -nostdinc++ -nostdlib++
|
CXXFLAGS += -I $(SRCDIR)/root/usr/include/c++/include/ -I $(SRCDIR)/root/usr/include/ -nostdinc -nostdinc++
|
||||||
CXX_SOURCES := main.cpp
|
CXX_SOURCES := main.cpp
|
||||||
|
|
||||||
include Makefile.rules
|
include Makefile.rules
|
||||||
|
|
Loading…
Reference in New Issue