summaryrefslogtreecommitdiff
path: root/lib/Support/PluginLoader.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'lib/Support/PluginLoader.cpp')
-rw-r--r--lib/Support/PluginLoader.cpp14
1 files changed, 12 insertions, 2 deletions
diff --git a/lib/Support/PluginLoader.cpp b/lib/Support/PluginLoader.cpp
index 2c13d57812..39e3c0afa5 100644
--- a/lib/Support/PluginLoader.cpp
+++ b/lib/Support/PluginLoader.cpp
@@ -13,13 +13,23 @@
#define DONT_GET_PLUGIN_LOADER_OPTION
#include "llvm/Support/PluginLoader.h"
-#include "llvm/Support/DynamicLinker.h"
+#include "llvm/System/DynamicLibrary.h"
#include <iostream>
+
using namespace llvm;
void PluginLoader::operator=(const std::string &Filename) {
std::string ErrorMessage;
- if (LinkDynamicObject(Filename.c_str(), &ErrorMessage))
+ try {
+ sys::DynamicLibrary::LoadLibraryPermanently(Filename.c_str());
+ } catch (const std::string& errmsg) {
+ if (errmsg.empty()) {
+ ErrorMessage = "Unknown";
+ } else {
+ ErrorMessage = errmsg;
+ }
+ }
+ if (!ErrorMessage.empty())
std::cerr << "Error opening '" << Filename << "': " << ErrorMessage
<< "\n -load request ignored.\n";
}