https://github.com/eronnen created https://github.com/llvm/llvm-project/pull/141427
None >From 12b61db385a595f1a9028c194322cb3d3c746f3c Mon Sep 17 00:00:00 2001 From: Ely Ronnen <elyron...@gmail.com> Date: Sun, 25 May 2025 22:22:34 +0200 Subject: [PATCH] [lldb] add missing cmake build type argument --- 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 9688b94d91842..c959c389f8a85 100755 --- a/lldb/utils/lldb-dotest/lldb-dotest.in +++ b/lldb/utils/lldb-dotest/lldb-dotest.in @@ -21,6 +21,7 @@ has_libcxx = @LLDB_HAS_LIBCXX@ libcxx_libs_dir = "@LIBCXX_LIBRARY_DIR@" libcxx_include_dir = "@LIBCXX_GENERATED_INCLUDE_DIR@" libcxx_include_target_dir = "@LIBCXX_GENERATED_INCLUDE_TARGET_DIR@" +cmake_build_type = "@CMAKE_BUILD_TYPE@" if __name__ == '__main__': wrapper_args = sys.argv[1:] @@ -52,6 +53,7 @@ if __name__ == '__main__': if lldb_build_intel_pt == "1": cmd.extend(['--enable-plugin', 'intel-pt']) cmd.extend(['--lldb-obj-root', lldb_obj_root]) + cmd.extend(['--cmake-build-type', cmake_build_type]) cmd.extend(wrapper_args) # Invoke dotest.py and return exit code. print(' '.join(cmd)) _______________________________________________ lldb-commits mailing list lldb-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits