Sisyphus
Mon, 05 May 2008 00:19:06 -0700
----- Original Message ----- From: "Edward Peschko" <[EMAIL PROTECTED]>
. .
Can't load _Inline/lib/auto/aab_p_6230/aab_p_6230.so' for module aab_p_6230: lib/libipworksssl.so.6: Undefined symbol "pthread_mutex_lock" at
If you reckon that you won't actually need the genuine pthread_mutex_lock, you could just code one up yourself and put it (eg) at the beginning of your C/C++ code:
void pthread_mutex_lock() {}
I've had success resolving undefined symbols using hacks like that in the
past (though I've not actually tried it with Inline).
Other than that, I guess you'll have to find the library that defines the symbol "pthread_mutex_lock" and specifically link that library in.
Cheers, Rob