Skip to content

Commit b1fcc18

Browse files
[lldb-tests] Force system's libcxx on tests failing with debug symbols
The tests in this patch expose failures of LLDBs expression evaluator when a standard library is compiled with debug symbols. This is the case for RelWithDebugInfo builds of llvm-project (with libcxx). Until these bugs are fixed, we force these tests to use the system's standard library. Differential Revision: https://reviews.llvm.org/D139361
1 parent 2442aa3 commit b1fcc18

File tree

3 files changed

+9
-3
lines changed
  • lldb/test/API/commands/expression/import-std-module

3 files changed

+9
-3
lines changed
Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1-
USE_LIBCPP := 1
1+
# FIXME: once the expression evaluator can handle std libraries with debug
2+
# info, change this to USE_LIBCPP=1
3+
USE_SYSTEM_STDLIB := 1
24
CXX_SOURCES := main.cpp
35
include Makefile.rules
Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1-
USE_LIBCPP := 1
1+
# FIXME: once the expression evaluator can handle std libraries with debug
2+
# info, change this to USE_LIBCPP=1
3+
USE_SYSTEM_STDLIB := 1
24
CXX_SOURCES := main.cpp
35
include Makefile.rules
Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1-
USE_LIBCPP := 1
1+
# FIXME: once the expression evaluator can handle std libraries with debug
2+
# info, change this to USE_LIBCPP=1
3+
USE_SYSTEM_STDLIB := 1
24
CXX_SOURCES := main.cpp
35
include Makefile.rules

0 commit comments

Comments
 (0)