summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichal Gorny <mgorny@gentoo.org>2019-10-14 05:33:23 +0000
committerMichal Gorny <mgorny@gentoo.org>2019-10-14 05:33:23 +0000
commit604dda360a6d644c4f3f046b2e73b9581e37dd30 (patch)
tree70637f56a6212c177b74a7bfa2e1613e8598154b
parent8b9cd183623d420a80eaa1d4b75fb6ae9217ae31 (diff)
downloadclang-604dda360a6d644c4f3f046b2e73b9581e37dd30.tar.gz
[clang] [clang-offload-bundler] Fix finding installed llvm-objcopy
Allow finding installed llvm-objcopy in PATH if it's not present in the directory containing clang-offload-bundler. This is the case if clang is being built stand-alone, and llvm-objcopy is already installed while the c-o-b tool is still present in build directory. This is consistent with how e.g. llvm-symbolizer is found in LLVM. However, most of similar searches in LLVM and Clang are performed without special-casing the program directory. Fixes r369955. Differential Revision: https://reviews.llvm.org/D68931 git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@374754 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--tools/clang-offload-bundler/ClangOffloadBundler.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/tools/clang-offload-bundler/ClangOffloadBundler.cpp b/tools/clang-offload-bundler/ClangOffloadBundler.cpp
index 19325e4a33..72def7756d 100644
--- a/tools/clang-offload-bundler/ClangOffloadBundler.cpp
+++ b/tools/clang-offload-bundler/ClangOffloadBundler.cpp
@@ -468,6 +468,8 @@ public:
// Find llvm-objcopy in order to create the bundle binary.
ErrorOr<std::string> Objcopy = sys::findProgramByName(
"llvm-objcopy", sys::path::parent_path(BundlerExecutable));
+ if (!Objcopy)
+ Objcopy = sys::findProgramByName("llvm-objcopy");
if (!Objcopy) {
errs() << "error: unable to find 'llvm-objcopy' in path.\n";
return true;