aboutsummaryrefslogtreecommitdiff
path: root/lib/System/Unix/DynamicLibrary.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'lib/System/Unix/DynamicLibrary.cpp')
-rw-r--r--lib/System/Unix/DynamicLibrary.cpp10
1 files changed, 9 insertions, 1 deletions
diff --git a/lib/System/Unix/DynamicLibrary.cpp b/lib/System/Unix/DynamicLibrary.cpp
index c513f51f95..24d7f5fb84 100644
--- a/lib/System/Unix/DynamicLibrary.cpp
+++ b/lib/System/Unix/DynamicLibrary.cpp
@@ -16,8 +16,16 @@
namespace llvm {
using namespace sys;
+DynamicLibrary::DynamicLibrary() : handle(0) {
+#if defined (HAVE_DLOPEN)
+ if ((handle = dlopen(0, RTLD_NOW | RTLD_GLOBAL)) == 0)
+ throw std::string( dlerror() );
+#else
+ assert(!"Dynamic object linking not implemented for this platform");
+#endif
+}
-DynamicLibrary::DynamicLibrary(const char *filename) {
+DynamicLibrary::DynamicLibrary(const char *filename) : handle(0) {
#if defined (HAVE_DLOPEN)
if ((handle = dlopen (filename, RTLD_NOW | RTLD_GLOBAL)) == 0)
throw std::string( dlerror() );