We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f8d6316 commit ee9294fCopy full SHA for ee9294f
lldb/utils/lldb-dotest/lldb-dotest.in
@@ -21,6 +21,7 @@ has_libcxx = @LLDB_HAS_LIBCXX@
21
libcxx_libs_dir = "@LIBCXX_LIBRARY_DIR@"
22
libcxx_include_dir = "@LIBCXX_GENERATED_INCLUDE_DIR@"
23
libcxx_include_target_dir = "@LIBCXX_GENERATED_INCLUDE_TARGET_DIR@"
24
+cmake_build_type = "@CMAKE_BUILD_TYPE@"
25
26
if __name__ == '__main__':
27
wrapper_args = sys.argv[1:]
@@ -52,6 +53,7 @@ if __name__ == '__main__':
52
53
if lldb_build_intel_pt == "1":
54
cmd.extend(['--enable-plugin', 'intel-pt'])
55
cmd.extend(['--lldb-obj-root', lldb_obj_root])
56
+ cmd.extend(['--cmake-build-type', cmake_build_type])
57
cmd.extend(wrapper_args)
58
# Invoke dotest.py and return exit code.
59
print(' '.join(cmd))
0 commit comments