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 | ae72ca9cb69c0941f44164447c545667adaa9bcb (patch) | |
tree | cb35ced5c0c42f92593b62b2aa543c71718d8198 | |
parent | 13d5b71a957f51fc86e3d21606a312b391039a4b (diff) |
Fix universal builds to not use -XCClinker (a libtool thing) now that
libtool doesn't exist.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@65561 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | Makefile.rules | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile.rules b/Makefile.rules index 2d5aedf40f..56d3a8739e 100644 --- a/Makefile.rules +++ b/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. |