diff options
author | Yunlian Jiang <yunlian@google.com> | 2018-04-13 05:03:28 +0000 |
---|---|---|
committer | Yunlian Jiang <yunlian@google.com> | 2018-04-13 05:03:28 +0000 |
commit | bd200b9ff64715624006e1495fc7e899739e4950 (patch) | |
tree | d2913163c7206bb95050670fb02816054da37f93 /llvm/test/lit.cfg.py | |
parent | d83c883d297b5a2bc407c20527cd4e5a1ee6e39e (diff) | |
download | bcm5719-llvm-bd200b9ff64715624006e1495fc7e899739e4950.tar.gz bcm5719-llvm-bd200b9ff64715624006e1495fc7e899739e4950.zip |
Enable debug fission for thinLTO linked via gold-plugin
Summary: This enables debug fission on implicit ThinLTO when linked with gold. It will put the .dwo files in a directory specified by user.
Reviewers: tejohnson, pcc, dblaikie
Reviewed By: pcc
Subscribers: JDevlieghere, mehdi_amini, inglorion
Differential Revision: https://reviews.llvm.org/D44792
llvm-svn: 329988
Diffstat (limited to 'llvm/test/lit.cfg.py')
-rw-r--r-- | llvm/test/lit.cfg.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/llvm/test/lit.cfg.py b/llvm/test/lit.cfg.py index 2c63e849df7..bfbb048f053 100644 --- a/llvm/test/lit.cfg.py +++ b/llvm/test/lit.cfg.py @@ -134,6 +134,7 @@ tools = [ ToolSubst('%ocamlc', ocamlc_command, unresolved='ignore'), ToolSubst('%ocamlopt', ocamlopt_command, unresolved='ignore'), ToolSubst('%opt-viewer', opt_viewer_cmd), + ToolSubst('%llvm-objcopy', FindTool('llvm-objcopy')), ] # FIXME: Why do we have both `lli` and `%lli` that do slightly different things? |