summaryrefslogtreecommitdiff
path: root/tools/llvm-config
diff options
context:
space:
mode:
authorBob Wilson <bob.wilson@apple.com>2012-05-09 00:07:02 +0000
committerBob Wilson <bob.wilson@apple.com>2012-05-09 00:07:02 +0000
commit6447d52ba8d869a7de254b440703b69d8b4343cf (patch)
treea19507ac18286d67c72a2e437963d36c8009b783 /tools/llvm-config
parent0daef3d90278d6c110f9af1e9f806fd05450ff48 (diff)
downloadllvm-6447d52ba8d869a7de254b440703b69d8b4343cf.tar.gz
llvm-6447d52ba8d869a7de254b440703b69d8b4343cf.tar.bz2
llvm-6447d52ba8d869a7de254b440703b69d8b4343cf.tar.xz
Do not install llvm-config-host for cross-builds of clang. rdar://11317847
My previous change to install llvm-config-host for cross-builds resulted in that file being installed even when the normal llvm-config was not installed, e.g., when building the install-clang target. Daniel suggested this alternative, which solves the immediate problem and also avoids the gunk in the top-level makefile. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@156448 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'tools/llvm-config')
-rw-r--r--tools/llvm-config/Makefile8
1 files changed, 8 insertions, 0 deletions
diff --git a/tools/llvm-config/Makefile b/tools/llvm-config/Makefile
index 3f11730a37..e8c86929e1 100644
--- a/tools/llvm-config/Makefile
+++ b/tools/llvm-config/Makefile
@@ -57,3 +57,11 @@ $(ObjDir)/BuildVariables.inc: $(BUILDVARIABLES_SRCPATH) Makefile $(ObjDir)/.dir
>> temp.sed
$(Verb) $(SED) -f temp.sed < $< > $@
$(Verb) $(RM) temp.sed
+
+# When cross-compiling, install a version of llvm-config that runs on the host.
+ifeq ($(LLVM_CROSS_COMPILING),1)
+install:: $(DESTDIR)$(PROJ_bindir)
+ $(Echo) Installing llvm-config-host
+ $(Verb) $(ProgInstall) $(BuildLLVMToolDir)/llvm-config \
+ $(DESTDIR)$(PROJ_bindir)/llvm-config-host
+endif