From: Julien Lerouge Date: Fri, 27 Mar 2009 18:18:00 +0000 (+0000) Subject: Fix build on MacOS 10.4 systems (suggested by Mike Smith). X-Git-Url: http://plrg.eecs.uci.edu/git/?a=commitdiff_plain;h=a6b37c09d3ce90b03c9d6ccbaf83068b9ad6f0ab;p=oota-llvm.git Fix build on MacOS 10.4 systems (suggested by Mike Smith). git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@67855 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/Makefile.rules b/Makefile.rules index 5856e01c13c..a8af0b7e73b 100644 --- a/Makefile.rules +++ b/Makefile.rules @@ -436,8 +436,8 @@ ifeq ($(OS),Darwin) # Get "4" out of 10.4 for later pieces in the makefile. DARWIN_MAJVERS := $(shell echo $(DARWIN_VERSION)| sed -E 's/10.([0-9]).*/\1/') - SharedLinkOptions=-Wl,-flat_namespace -Wl,-undefined -Wl,suppress -Wl,-dylib \ - -mmacosx-version-min=$(DARWIN_VERSION) + SharedLinkOptions=-Wl,-flat_namespace -Wl,-undefined -Wl,suppress \ + -dynamiclib -mmacosx-version-min=$(DARWIN_VERSION) TargetCommonOpts += -mmacosx-version-min=$(DARWIN_VERSION) else ifeq ($(OS),Cygwin)