aboutsummaryrefslogtreecommitdiff
path: root/lib/System/DynamicLibrary.cpp
diff options
context:
space:
mode:
authorReid Spencer <rspencer@reidspencer.com>2004-11-29 10:39:46 +0000
committerReid Spencer <rspencer@reidspencer.com>2004-11-29 10:39:46 +0000
commit441cc2ab01685fa9f03fbadbc83716dcdbfdc492 (patch)
tree52053593b63d61f832a15211351843369c9104db /lib/System/DynamicLibrary.cpp
parent7a9369065d1ab22e32af65bd505ce5bc45a2216c (diff)
Implement the default constructor which causes the current program to be
opened as if it was a dynamic library so its symbols can be searched too. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@18341 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/System/DynamicLibrary.cpp')
-rw-r--r--lib/System/DynamicLibrary.cpp10
1 files changed, 10 insertions, 0 deletions
diff --git a/lib/System/DynamicLibrary.cpp b/lib/System/DynamicLibrary.cpp
index ca7bee661a..477e3051c0 100644
--- a/lib/System/DynamicLibrary.cpp
+++ b/lib/System/DynamicLibrary.cpp
@@ -28,6 +28,16 @@ using namespace sys;
#ifdef HAVE_LT_DLOPEN
+DynamicLibrary::DynamicLibrary() : handle(0) {
+ if (0 != lt_dlinit())
+ throw std::string(lt_dlerror());
+
+ handle = lt_dlopen(0);
+
+ if (handle == 0)
+ throw std::string("Can't open program as dynamic library");
+}
+
DynamicLibrary::DynamicLibrary(const char*filename) : handle(0) {
if (0 != lt_dlinit())
throw std::string(lt_dlerror());