[Lldb-commits] [lldb] [lldb] Make sure TestDAP_subtleFrames actually uses libc++ (PR #108227)
via lldb-commits
lldb-commits at lists.llvm.org
Wed Sep 11 06:53:51 PDT 2024
llvmbot wrote:
<!--LLVM PR SUMMARY COMMENT-->
@llvm/pr-subscribers-lldb
Author: Pavel Labath (labath)
<details>
<summary>Changes</summary>
Without this, the binary would still be built with libstdc++, if that's the system/compiler default.
---
Full diff: https://github.com/llvm/llvm-project/pull/108227.diff
1 Files Affected:
- (modified) lldb/test/API/tools/lldb-dap/stackTrace/subtleFrames/Makefile (+1)
``````````diff
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
``````````
</details>
https://github.com/llvm/llvm-project/pull/108227
More information about the lldb-commits
mailing list