[PATCH] D50156: [test] Fix %hmaptool path for standalone builds

Michał Górny via Phabricator via cfe-commits cfe-commits at lists.llvm.org
Wed Aug 1 13:38:46 PDT 2018


This revision was automatically updated to reflect the committed changes.
Closed by commit rC338627: [test] Fix %hmaptool path for standalone builds (authored by mgorny, committed by ).

Repository:
  rC Clang

https://reviews.llvm.org/D50156

Files:
  test/lit.cfg.py


Index: test/lit.cfg.py
===================================================================
--- test/lit.cfg.py
+++ test/lit.cfg.py
@@ -71,7 +71,7 @@
 
 config.substitutions.append(
     ('%hmaptool', "'%s' %s" % (config.python_executable,
-                             os.path.join(config.llvm_tools_dir, 'hmaptool'))))
+                             os.path.join(config.clang_tools_dir, 'hmaptool'))))
 
 # Plugins (loadable modules)
 # TODO: This should be supplied by Makefile or autoconf.


-------------- next part --------------
A non-text attachment was scrubbed...
Name: D50156.158620.patch
Type: text/x-patch
Size: 492 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/cfe-commits/attachments/20180801/e0d750c5/attachment.bin>


More information about the cfe-commits mailing list