From: Matthew Moss Subject: Objective-C problems.... To: djgpp AT sun DOT soe DOT clarkson DOT edu (DJGPP Mailing List) Date: Mon, 3 Jan 1994 13:30:18 -0500 (EST) 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