diff options
author | Reid Spencer <rspencer@reidspencer.com> | 2004-11-29 10:39:46 +0000 |
---|---|---|
committer | Reid Spencer <rspencer@reidspencer.com> | 2004-11-29 10:39:46 +0000 |
commit | 72a7457a9021a088381ba9768908feeea928be58 (patch) | |
tree | fcc8bbfb743d5b6c91fae0f059750735819a3f13 /llvm/lib/System/DynamicLibrary.cpp | |
parent | 073173568d181279720142f281259e1f0c82da0f (diff) | |
download | bcm5719-llvm-72a7457a9021a088381ba9768908feeea928be58.tar.gz bcm5719-llvm-72a7457a9021a088381ba9768908feeea928be58.zip |
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.
llvm-svn: 18341
Diffstat (limited to 'llvm/lib/System/DynamicLibrary.cpp')
-rw-r--r-- | llvm/lib/System/DynamicLibrary.cpp | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/llvm/lib/System/DynamicLibrary.cpp b/llvm/lib/System/DynamicLibrary.cpp index ca7bee661a6..477e3051c03 100644 --- a/llvm/lib/System/DynamicLibrary.cpp +++ b/llvm/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()); |