On Wednesday, May 7, 2003, at 10:21 PM, S.J.Chun wrote:
create def and copy it to the required location. But here comes another
problem, this time libStepTalk making process
says it cannot find required symbols like objc_msg_lookup and NSObject like
things. I think library making process in
Windows requires link process with libgnustep-base and libobjc. How can I
modify GNUmakfile to link against these libs?
You need to add something like this to the GNUmakefile.preamble or GNUmakefile
ifeq ($(GNUSTEP_TARGET_OS),mingw32)
libStepTalk_LIBRARIES_DEPEND_UPON += -lgnustep-base -lobjc
endif