[llvm-commits] [llvm] r65561 - /llvm/trunk/Makefile.rules
Chris Lattner
sabre at nondot.org
Thu Feb 26 11:08:30 PST 2009
Author: lattner
Date: Thu Feb 26 13:08:30 2009
New Revision: 65561
URL: http://llvm.org/viewvc/llvm-project?rev=65561&view=rev
Log:
Fix universal builds to not use -XCClinker (a libtool thing) now that
libtool doesn't exist.
Modified:
llvm/trunk/Makefile.rules
Modified: llvm/trunk/Makefile.rules
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/Makefile.rules?rev=65561&r1=65560&r2=65561&view=diff
==============================================================================
--- llvm/trunk/Makefile.rules (original)
+++ llvm/trunk/Makefile.rules Thu Feb 26 13:08:30 2009
@@ -480,10 +480,10 @@
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.
More information about the llvm-commits
mailing list