diff options
author | Raphael Isemann <teemperor@gmail.com> | 2019-09-25 08:32:25 +0000 |
---|---|---|
committer | Raphael Isemann <teemperor@gmail.com> | 2019-09-25 08:32:25 +0000 |
commit | e5ff8919c480c2805e65890bb26d7137fa597984 (patch) | |
tree | bc38e64b750347e4aff22ba799f0a35d8669dc5c /lldb/packages/Python/lldbsuite/test/commands/expression/import-std-module | |
parent | f8ecb24822b35c3f254dc2f924931d215c3c4a44 (diff) | |
download | bcm5719-llvm-e5ff8919c480c2805e65890bb26d7137fa597984.tar.gz bcm5719-llvm-e5ff8919c480c2805e65890bb26d7137fa597984.zip |
[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
Diffstat (limited to 'lldb/packages/Python/lldbsuite/test/commands/expression/import-std-module')
-rw-r--r-- | lldb/packages/Python/lldbsuite/test/commands/expression/import-std-module/sysroot/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/packages/Python/lldbsuite/test/commands/expression/import-std-module/sysroot/Makefile b/lldb/packages/Python/lldbsuite/test/commands/expression/import-std-module/sysroot/Makefile index e7b3bdb33d7..b6d781e7b26 100644 --- a/lldb/packages/Python/lldbsuite/test/commands/expression/import-std-module/sysroot/Makefile +++ b/lldb/packages/Python/lldbsuite/test/commands/expression/import-std-module/sysroot/Makefile @@ -3,7 +3,7 @@ # system headers. 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 include Makefile.rules |