[Lldb-commits] [lldb] [lldb] Use system c++ lib for LLDB STL tests (PR #112598)
via lldb-commits
lldb-commits at lists.llvm.org
Wed Oct 16 11:48:22 PDT 2024
https://github.com/zeroomega updated https://github.com/llvm/llvm-project/pull/112598
>From fe4fe7395d36a89d6df62c8bf6212cff0f665b9f Mon Sep 17 00:00:00 2001
From: Haowei Wu <haowei at google.com>
Date: Wed, 16 Oct 2024 11:24:34 -0700
Subject: [PATCH] [lldb] Use system c++ lib for LLDB STL tests
This change partially reverts #112357 to avoid LLDB STL test
failures on machines which do not have gcc installed.
---
lldb/test/API/lang/cpp/stl/Makefile | 6 +-----
1 file changed, 1 insertion(+), 5 deletions(-)
diff --git a/lldb/test/API/lang/cpp/stl/Makefile b/lldb/test/API/lang/cpp/stl/Makefile
index 4408691f01b701..8534fa9b00209e 100644
--- a/lldb/test/API/lang/cpp/stl/Makefile
+++ b/lldb/test/API/lang/cpp/stl/Makefile
@@ -1,9 +1,5 @@
CXX_SOURCES := main.cpp
-ifneq ($(OS),Darwin)
- USE_LIBSTDCPP := 1
-else
- USE_SYSTEM_STDLIB := 1
-endif
+USE_SYSTEM_STDLIB := 1
include Makefile.rules
More information about the lldb-commits
mailing list