mirror of
https://github.com/RPCSX/llvm.git
synced 2024-11-26 13:10:34 +00:00
Use System/DynamicLibrary instead of Support/DynamicLinker to implement.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@18356 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
19cd4a9e6b
commit
737459df79
@ -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