[Lldb-commits] [lldb] 069b841 - [lldb] Make sure TestDAP_subtleFrames actually uses libc++ (#108227)
via lldb-commits
lldb-commits at lists.llvm.org
Fri Sep 13 02:18:08 PDT 2024
Author: Pavel Labath
Date: 2024-09-13T11:18:05+02:00
New Revision: 069b841c2ecde39c65ca74660b681d4d25a4bbb2
URL: https://github.com/llvm/llvm-project/commit/069b841c2ecde39c65ca74660b681d4d25a4bbb2
DIFF: https://github.com/llvm/llvm-project/commit/069b841c2ecde39c65ca74660b681d4d25a4bbb2.diff
LOG: [lldb] Make sure TestDAP_subtleFrames actually uses libc++ (#108227)
Without this, the binary would still be built with libstdc++, if that's
the system/compiler default.
Added:
Modified:
lldb/test/API/tools/lldb-dap/stackTrace/subtleFrames/Makefile
Removed:
################################################################################
diff --git a/lldb/test/API/tools/lldb-dap/stackTrace/subtleFrames/Makefile b/lldb/test/API/tools/lldb-dap/stackTrace/subtleFrames/Makefile
index 99998b20bcb050..ab034edd121f9f 100644
--- a/lldb/test/API/tools/lldb-dap/stackTrace/subtleFrames/Makefile
+++ b/lldb/test/API/tools/lldb-dap/stackTrace/subtleFrames/Makefile
@@ -1,3 +1,4 @@
CXX_SOURCES := main.cpp
+USE_LIBCPP := 1
include Makefile.rules
More information about the lldb-commits
mailing list