[Lldb-commits] [lldb] [lldb] Make sure TestDAP_subtleFrames actually uses libc++ (PR #108227)

Pavel Labath via lldb-commits lldb-commits at lists.llvm.org
Wed Sep 11 06:53:22 PDT 2024


https://github.com/labath created https://github.com/llvm/llvm-project/pull/108227

Without this, the binary would still be built with libstdc++, if that's the system/compiler default.

>From 2cd17c367db099e59497f1050f9bb07ce2a6d269 Mon Sep 17 00:00:00 2001
From: Pavel Labath <pavel at labath.sk>
Date: Wed, 11 Sep 2024 15:51:23 +0200
Subject: [PATCH] [lldb] Make sure TestDAP_subtleFrames actually uses libc++

Without this, the binary would still be built with libstdc++, if that's
the system/compiler default.
---
 lldb/test/API/tools/lldb-dap/stackTrace/subtleFrames/Makefile | 1 +
 1 file changed, 1 insertion(+)

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