Attempt to provide support for those without RTLD_DEFAULT.

llvm-svn: 9503
This commit is contained in:
Chris Lattner 2003-10-25 16:55:32 +00:00
parent 37edb43831
commit 4d5767c703
1 changed files with 5 additions and 0 deletions

View File

@ -37,7 +37,12 @@ bool LinkDynamicObject (const char *filename, std::string *ErrorMessage) {
void *GetAddressOfSymbol (const char *symbolName) {
#if defined (HAVE_DLOPEN)
#ifdef RTLD_DEFAULT
return dlsym (RTLD_DEFAULT, symbolName);
#else
static void* CurHandle = dlopen(0, RTLD_LAZY);
return dlsym(CurHandle, symbolName);
#endif
#else
assert (0 && "Dynamic symbol lookup not implemented for this platform");
#endif