summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2009-02-26 19:08:30 +0000
committerChris Lattner <sabre@nondot.org>2009-02-26 19:08:30 +0000
commit659ed19150ccc1ffd48afd776ac2d47515de599a (patch)
treef8473357291bbce4e8cea4290fc1160fd0e8033c
parente2617d97a588d29b2d50b050e5cef0c22059031c (diff)
downloadbcm5719-llvm-659ed19150ccc1ffd48afd776ac2d47515de599a.tar.gz
bcm5719-llvm-659ed19150ccc1ffd48afd776ac2d47515de599a.zip
Fix universal builds to not use -XCClinker (a libtool thing) now that
libtool doesn't exist. llvm-svn: 65561
-rw-r--r--llvm/Makefile.rules4
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/Makefile.rules b/llvm/Makefile.rules
index 2d5aedf40fc..56d3a8739ed 100644
--- a/llvm/Makefile.rules
+++ b/llvm/Makefile.rules
@@ -480,10 +480,10 @@ ifdef UNIVERSAL
endif
UNIVERSAL_ARCH_OPTIONS := $(UNIVERSAL_ARCH:%=-arch %)
CompileCommonOpts += $(UNIVERSAL_ARCH_OPTIONS)
- Relink.Flags := $(UNIVERSAL_ARCH_OPTIONS:%=-XCClinker %)
+ Relink.Flags := $(UNIVERSAL_ARCH_OPTIONS)
ifdef UNIVERSAL_SDK_PATH
CompileCommonOpts += -isysroot $(UNIVERSAL_SDK_PATH)
- Relink.Flags += -XCClinker -isysroot -XCClinker $(UNIVERSAL_SDK_PATH)
+ Relink.Flags += -isysroot $(UNIVERSAL_SDK_PATH)
endif
# Building universal cannot compute dependencies automatically.
OpenPOWER on IntegriCloud