From ad20d3825ea2ce02e502901679a1305158b6d7b2 Mon Sep 17 00:00:00 2001 From: Bill Wendling Date: Sun, 22 Mar 2009 08:56:15 +0000 Subject: [PATCH] Really should pass -dylib to the linker... git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@67469 91177308-0d34-0410-b5e6-96231b3b80d8 --- Makefile.rules | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile.rules b/Makefile.rules index 88295f2e2d5..aece8bab27f 100644 --- a/Makefile.rules +++ b/Makefile.rules @@ -435,7 +435,7 @@ 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 -dylib \ + SharedLinkOptions=-Wl,-flat_namespace -Wl,-undefined -Wl,suppress -Wl,-dylib \ -mmacosx-version-min=$(DARWIN_VERSION) CompileCommonOpts += -mmacosx-version-min=$(DARWIN_VERSION) else -- 2.34.1