From fa135cf853fb1eb2372cb1c05c75f233a1c7e456 Mon Sep 17 00:00:00 2001 From: Dave Lee Date: Thu, 16 Jan 2025 13:01:24 -0800 Subject: [PATCH] [lldb] Fix path of make command in dotest configuration --- lldb/utils/lldb-dotest/lldb-dotest.in | 2 ++ 1 file changed, 2 insertions(+) diff --git a/lldb/utils/lldb-dotest/lldb-dotest.in b/lldb/utils/lldb-dotest/lldb-dotest.in index 941a98ef5876a..5e0351255b9a5 100755 --- a/lldb/utils/lldb-dotest/lldb-dotest.in +++ b/lldb/utils/lldb-dotest/lldb-dotest.in @@ -10,6 +10,7 @@ executable = '@LLDB_TEST_EXECUTABLE_CONFIGURED@' compiler = '@LLDB_TEST_COMPILER_CONFIGURED@' swift_compiler = '@LLDB_SWIFTC@' dsymutil = '@LLDB_TEST_DSYMUTIL_CONFIGURED@' +make_path = '@LLDB_TEST_MAKE@' lldb_build_dir = '@LLDB_TEST_BUILD_DIRECTORY_CONFIGURED@' lldb_build_intel_pt = "@LLDB_BUILD_INTEL_PT@" lldb_framework_dir = "@LLDB_FRAMEWORK_DIR_CONFIGURED@" @@ -37,6 +38,7 @@ if __name__ == '__main__': cmd.extend(['--executable', executable]) cmd.extend(['--compiler', compiler]) cmd.extend(['--dsymutil', dsymutil]) + cmd.extend(['--make', make_path]) cmd.extend(['--lldb-libs-dir', lldb_libs_dir]) cmd.extend(['--llvm-tools-dir', llvm_tools_dir]) if swift_compiler: