diff options
author | Chris Lattner <sabre@nondot.org> | 2009-02-26 19:08:30 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2009-02-26 19:08:30 +0000 |
commit | 659ed19150ccc1ffd48afd776ac2d47515de599a (patch) | |
tree | f8473357291bbce4e8cea4290fc1160fd0e8033c | |
parent | e2617d97a588d29b2d50b050e5cef0c22059031c (diff) | |
download | bcm5719-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.rules | 4 |
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. |