39 lines
1.4 KiB
Diff
39 lines
1.4 KiB
Diff
|
From ad0f01329b13171b2e066dafe306df3237ff1151 Mon Sep 17 00:00:00 2001
|
||
|
From: Hans Wennborg <hans@hanshq.net>
|
||
|
Date: Tue, 7 Aug 2018 06:57:36 +0000
|
||
|
Subject: [PATCH] Merging r338627:
|
||
|
------------------------------------------------------------------------
|
||
|
r338627 | mgorny | 2018-08-01 22:38:22 +0200 (Wed, 01 Aug 2018) | 7 lines
|
||
|
|
||
|
[test] Fix %hmaptool path for standalone builds
|
||
|
|
||
|
Fix %hmaptool path to refer to clang_tools_dir instead of
|
||
|
llvm_tools_dir, in order to fix standalone builds. The tool is built
|
||
|
as part of clang, so it won't be found in installed LLVM tools.
|
||
|
|
||
|
Differential Revision: https://reviews.llvm.org/D50156
|
||
|
------------------------------------------------------------------------
|
||
|
|
||
|
|
||
|
git-svn-id: https://llvm.org/svn/llvm-project/cfe/branches/release_70@339102 91177308-0d34-0410-b5e6-96231b3b80d8
|
||
|
---
|
||
|
test/lit.cfg.py | 2 +-
|
||
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
||
|
|
||
|
diff --git a/test/lit.cfg.py b/test/lit.cfg.py
|
||
|
index ad30988..c962b41 100644
|
||
|
--- a/test/lit.cfg.py
|
||
|
+++ b/test/lit.cfg.py
|
||
|
@@ -71,7 +71,7 @@ llvm_config.add_tool_substitutions(tools, tool_dirs)
|
||
|
|
||
|
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.
|
||
|
--
|
||
|
1.8.3.1
|
||
|
|