Always link agains all libs when using Apple's CC.

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/tools/make/trunk@22254 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Adam Fedor 2006-01-05 17:15:57 +00:00
parent 7cbc431b3f
commit 0c4385f668
2 changed files with 8 additions and 3 deletions

View file

@ -1,3 +1,8 @@
2006-01-05 Adam Fedor <fedor@gnu.org>
* Instance/bundle.make: Always link agains all libs when using
Apple's CC.
2006-01-01 Richard Frith-Macdonald <rfm@gnu.org>
* openapp.in: Remove IFS setting and search again ... it prevented

View file

@ -64,9 +64,9 @@ ifeq ($(BUILD_DLL), yes)
LINK_BUNDLE_AGAINST_ALL_LIBS = yes
endif
# On Darwin, two-level namespaces require all symbols in bundles
# to be resolved at link time. Do this even if we don't think we need it.
ifeq ($(findstring darwin, $(GNUSTEP_TARGET_OS)), darwin)
# Apple CC two-level namespaces requires all symbols in bundles
# to be resolved at link time.
ifeq ($(CC_BUNDLE), yes)
LINK_BUNDLE_AGAINST_ALL_LIBS = yes
endif