On 15 Apr 2011, at 14:14, Silas Baronda wrote: > So whenever I am compiling anything, I need to always be linking against the > new libobjc.so.4?
Yes. Linking against two versions of the same library is a Very Bad Idea™. Even if they are completely different implementations, they're exposing the same interfaces. The cause of this specific crash is attempting to lock a mutex that was meant to be created in __objc_exec_class(), but wasn't because __objc_exec_class() from the GCC runtime was called instead. David -- Sent from my STANTEC-ZEBRA _______________________________________________ Etoile-dev mailing list [email protected] https://mail.gna.org/listinfo/etoile-dev
