[llvm-commits] [llvm] r67468 - /llvm/trunk/Makefile.rules
Bill Wendling
isanbard at gmail.com
Sun Mar 22 01:28:45 PDT 2009
Author: void
Date: Sun Mar 22 03:28:45 2009
New Revision: 67468
URL: http://llvm.org/viewvc/llvm-project?rev=67468&view=rev
Log:
A dylib should be built as a dylib and not a bundle.
Modified:
llvm/trunk/Makefile.rules
Modified: llvm/trunk/Makefile.rules
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/Makefile.rules?rev=67468&r1=67467&r2=67468&view=diff
==============================================================================
--- llvm/trunk/Makefile.rules (original)
+++ llvm/trunk/Makefile.rules Sun Mar 22 03:28:45 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