[llvm-commits] [llvm] r67467 - /llvm/branches/Apple/Dib/Makefile.rules

Bill Wendling isanbard at gmail.com
Sun Mar 22 01:28:16 PDT 2009


Author: void
Date: Sun Mar 22 03:28:15 2009
New Revision: 67467

URL: http://llvm.org/viewvc/llvm-project?rev=67467&view=rev
Log:
A "dylib" should be built as a dylib and not a bundle.

Modified:
    llvm/branches/Apple/Dib/Makefile.rules

Modified: llvm/branches/Apple/Dib/Makefile.rules
URL: http://llvm.org/viewvc/llvm-project/llvm/branches/Apple/Dib/Makefile.rules?rev=67467&r1=67466&r2=67467&view=diff

==============================================================================
--- llvm/branches/Apple/Dib/Makefile.rules (original)
+++ llvm/branches/Apple/Dib/Makefile.rules Sun Mar 22 03:28:15 2009
@@ -434,8 +434,8 @@
   DARWIN_VERSION := $(shell echo $(DARWIN_VERSION)| sed -E 's/(10.[0-9]).*/\1/')
   # 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 -bundle \
+
+  SharedLinkOptions=-Wl,-flat_namespace -Wl,-undefined -Wl,suppress -dylib \
                     -mmacosx-version-min=$(DARWIN_VERSION)
   CompileCommonOpts += -mmacosx-version-min=$(DARWIN_VERSION)
 else





More information about the llvm-commits mailing list