On second thoughts, do not export all symbols on Cygwin in case it's not

supported there ... can't test it


git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/tools/make/trunk@20957 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Nicola Pero 2005-03-22 04:23:08 +00:00
parent 10380f4067
commit 7a77daec6b

View file

@ -111,8 +111,10 @@ APP_FILE = $(GNUSTEP_BUILD_DIR)/$(APP_FILE_NAME)
# Gorm.app/Gorm.exe.a to the list of objects you link and you get it
# working. TODO: Move this into target.make
ifeq ($(BUILD_DLL), yes)
ifneq ($(OLD_DLL_SUPPORT),yes)
ALL_LDFLAGS += -Wl,--export-all-symbols -Wl,--out-implib,$(GNUSTEP_BUILD_DIR)/$(APP_DIR_NAME)/$(GNUSTEP_TARGET_LDIR)/$(GNUSTEP_INSTANCE).exe$(LIBEXT)
endif
endif
$(APP_FILE): $(OBJ_FILES_TO_LINK)
$(ECHO_LINKING)$(LD) $(ALL_LDFLAGS) -o $(LDOUT)$@ $(OBJ_FILES_TO_LINK)\