Date: Tue, 4 Jan 1994 05:54:08 -0500 (GMT-0500) From: Dru Nelson Subject: Re: Objective-C problems.... To: Matthew Moss Cc: DJGPP Mailing List Hello, Did you do the -lobjc? Also, if it still doesn't work, then I think you need the library that was compiled unoptimized. On Mon, 3 Jan 1994, Matthew Moss wrote: > Date: Mon, 3 Jan 1994 13:30:18 -0500 (EST) > From: Matthew Moss > To: DJGPP Mailing List > Subject: Objective-C problems.... > > Has anyone succesfully compiled an Objective-C program using DJGPP 1.11.m1? > > When I tried a most basic program (see below), I got messages stating that > certain symbols (or functions) could not be found, including (eg) > objc_msg_lookup > which should be very basic. > > The test code that produced this error message (along with a few other symbols > missing) is: > > > #include > #include > > main() > { > id one; > > one = [Object new]; > [one free]; > } > > > --- > Matt Moss > mmoss AT panix DOT com >