mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-01-15 23:31:37 +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
|
#define DONT_GET_PLUGIN_LOADER_OPTION
|
||||||
#include "llvm/Support/PluginLoader.h"
|
#include "llvm/Support/PluginLoader.h"
|
||||||
#include "llvm/Support/DynamicLinker.h"
|
#include "llvm/System/DynamicLibrary.h"
|
||||||
#include <iostream>
|
#include <iostream>
|
||||||
|
|
||||||
using namespace llvm;
|
using namespace llvm;
|
||||||
|
|
||||||
void PluginLoader::operator=(const std::string &Filename) {
|
void PluginLoader::operator=(const std::string &Filename) {
|
||||||
std::string ErrorMessage;
|
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
|
std::cerr << "Error opening '" << Filename << "': " << ErrorMessage
|
||||||
<< "\n -load request ignored.\n";
|
<< "\n -load request ignored.\n";
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user