[Lldb-commits] [PATCH] D58871: [lldb] [lldbtest] Fix getBuildFlags() not to use libstdc++ on NetBSD
Michał Górny via Phabricator via lldb-commits
lldb-commits at lists.llvm.org
Sat Mar 2 08:48:23 PST 2019
This revision was automatically updated to reflect the committed changes.
Closed by commit rLLDB355273: [lldb] [lldbtest] Fix getBuildFlags() not to use libstdc++ on NetBSD (authored by mgorny, committed by ).
Changed prior to commit:
https://reviews.llvm.org/D58871?vs=189040&id=189051#toc
Repository:
rLLDB LLDB
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D58871/new/
https://reviews.llvm.org/D58871
Files:
packages/Python/lldbsuite/test/lldbtest.py
Index: packages/Python/lldbsuite/test/lldbtest.py
===================================================================
--- packages/Python/lldbsuite/test/lldbtest.py
+++ packages/Python/lldbsuite/test/lldbtest.py
@@ -1666,7 +1666,8 @@
elif self.getPlatform() == "openbsd":
cflags += " -stdlib=libc++"
elif self.getPlatform() == "netbsd":
- cflags += " -stdlib=libstdc++"
+ # NetBSD defaults to libc++
+ pass
elif "clang" in self.getCompiler():
cflags += " -stdlib=libstdc++"
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D58871.189051.patch
Type: text/x-patch
Size: 562 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/lldb-commits/attachments/20190302/0d70c530/attachment.bin>
More information about the lldb-commits
mailing list