From 2f2ab10e3712992bab7d4b08fad641d73c2800cb Mon Sep 17 00:00:00 2001 From: Haowei Wu 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, 6 deletions(-) diff --git a/lldb/test/API/lang/cpp/stl/Makefile b/lldb/test/API/lang/cpp/stl/Makefile index 4408691f01b70..99998b20bcb05 100644 --- a/lldb/test/API/lang/cpp/stl/Makefile +++ b/lldb/test/API/lang/cpp/stl/Makefile @@ -1,9 +1,3 @@ CXX_SOURCES := main.cpp -ifneq ($(OS),Darwin) - USE_LIBSTDCPP := 1 -else - USE_SYSTEM_STDLIB := 1 -endif - include Makefile.rules