A dylib should be built as a dylib and not a bundle.

llvm-svn: 67468
This commit is contained in:
Bill Wendling 2009-03-22 08:28:45 +00:00
parent dc637a0be9
commit f3ef2c758f
1 changed files with 2 additions and 2 deletions

View File

@ -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 -bundle \
SharedLinkOptions=-Wl,-flat_namespace -Wl,-undefined -Wl,suppress -dylib \
-mmacosx-version-min=$(DARWIN_VERSION)
CompileCommonOpts += -mmacosx-version-min=$(DARWIN_VERSION)
else