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 1c6fc7d commit 892f022Copy full SHA for 892f022
lldb/lit/helper/toolchain.py
@@ -34,17 +34,15 @@ def use_lldb_substitutions(config):
34
if config.llvm_libs_dir:
35
build_script_args.append('--libs-dir={0}'.format(config.llvm_libs_dir))
36
37
+ lldb_init = os.path.join(config.test_exec_root, 'lit-lldb-init')
38
+
39
primary_tools = [
40
ToolSubst('%lldb',
41
command=FindTool('lldb'),
- extra_args=['--no-lldbinit', '-S',
- os.path.join(config.test_exec_root,
42
- 'lit-lldb-init')]),
+ extra_args=['--no-lldbinit', '-S', lldb_init]),
43
ToolSubst('%lldb-init',
44
45
- extra_args=['-S',
46
47
+ extra_args=['-S', lldb_init]),
48
lldbmi,
49
ToolSubst('%debugserver',
50
command=FindTool(dsname),
0 commit comments