llvmbot wrote:
<!--LLVM PR SUMMARY COMMENT--> @llvm/pr-subscribers-lldb Author: Ely Ronnen (eronnen) <details> <summary>Changes</summary> --- Full diff: https://github.com/llvm/llvm-project/pull/141427.diff 1 Files Affected: - (modified) lldb/utils/lldb-dotest/lldb-dotest.in (+2) ``````````diff 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)) `````````` </details> https://github.com/llvm/llvm-project/pull/141427 _______________________________________________ lldb-commits mailing list lldb-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits