From ce233e714665a0499fbd0686226e43130d44ef87 Mon Sep 17 00:00:00 2001 From: Jonas Devlieghere Date: Mon, 11 Jul 2022 14:03:53 -0700 Subject: [lldb] Use the just-built libc++ for testing the LLDB data formatters Make sure we use the libc++ from the build dir. Currently, by passing -stdlib=libc++, we might pick up the system libc++. This change ensures that if LLVM_LIBS_DIR is set, we try to use the libc++ from there. Differential revision: https://reviews.llvm.org/D129166 --- lldb/packages/Python/lldbsuite/test/configuration.py | 3 +++ 1 file changed, 3 insertions(+) (limited to 'lldb/packages/Python/lldbsuite/test/configuration.py') diff --git a/lldb/packages/Python/lldbsuite/test/configuration.py b/lldb/packages/Python/lldbsuite/test/configuration.py index 6b3da8f..c29a44e 100644 --- a/lldb/packages/Python/lldbsuite/test/configuration.py +++ b/lldb/packages/Python/lldbsuite/test/configuration.py @@ -124,6 +124,9 @@ all_tests = set() # LLDB library directory. lldb_libs_dir = None +# Force us to use the just-built libcxx +hermetic_libcxx = False + # A plugin whose tests will be enabled, like intel-pt. enabled_plugins = [] -- cgit v1.1