aboutsummaryrefslogtreecommitdiff
path: root/lib/Support/DynamicLinker.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'lib/Support/DynamicLinker.cpp')
-rw-r--r--lib/Support/DynamicLinker.cpp5
1 files changed, 5 insertions, 0 deletions
diff --git a/lib/Support/DynamicLinker.cpp b/lib/Support/DynamicLinker.cpp
index 05a63f3d76..74b3603679 100644
--- a/lib/Support/DynamicLinker.cpp
+++ b/lib/Support/DynamicLinker.cpp
@@ -37,8 +37,13 @@ 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
}