Re: Undefined symbol on Solaris 10 SPARC
"Chris B. Vetter" <[email protected]> Fri, 30 May 2008 17:43:26 +0200
| Newsgroups | gmane.comp.lib.gnustep.user |
|---|---|
| Message-ID | <[email protected]> |
On Fri, May 30, 2008 at 4:46 PM, Adam Fedor <[email protected]> wrote: > What compiler are you using? objc_msg_forward2 is defined in the libobjc > library that comes with the gcc compiler (but the compiler needs to be > reasonably up-to-date. He wouldn't get that far if GCC didn't support ObjC. Check to make sure your compiler's libobjc.so is in your runtime linking environment. If it isn't, try something like # crle -u -l /path/to/the/objective-c/library eg: # crle -u -l /opt/csw/gcc4/lib/ and/or read up on crle(1). Alternatively, you can try to add the path to the LD_LIBRARY_PATH environment variable. -- Chris