mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-24 03:33:20 +01:00
Use System/DynamicLibrary instead of Support/DynamicLinker to implement.
llvm-svn: 18356
This commit is contained in:
parent
66b4a250cf
commit
e4efcbf807
@ -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";
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user