mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-13 20:32:21 +00:00
Change to use LinkDynamicObject instead of dlopen.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@9011 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
2d6a236003
commit
56d8616872
@ -10,6 +10,7 @@
|
|||||||
//
|
//
|
||||||
//===----------------------------------------------------------------------===//
|
//===----------------------------------------------------------------------===//
|
||||||
|
|
||||||
|
#include "Support/DynamicLinker.h"
|
||||||
#include "Support/CommandLine.h"
|
#include "Support/CommandLine.h"
|
||||||
#include "Config/dlfcn.h"
|
#include "Config/dlfcn.h"
|
||||||
#include "Config/link.h"
|
#include "Config/link.h"
|
||||||
@ -18,8 +19,9 @@
|
|||||||
namespace {
|
namespace {
|
||||||
struct PluginLoader {
|
struct PluginLoader {
|
||||||
void operator=(const std::string &Filename) {
|
void operator=(const std::string &Filename) {
|
||||||
if (dlopen(Filename.c_str(), RTLD_NOW|RTLD_GLOBAL) == 0)
|
std::string ErrorMessage;
|
||||||
std::cerr << "Error opening '" << Filename << "': " << dlerror()
|
if (LinkDynamicObject (Filename.c_str (), &ErrorMessage))
|
||||||
|
std::cerr << "Error opening '" << Filename << "': " << ErrorMessage
|
||||||
<< "\n -load request ignored.\n";
|
<< "\n -load request ignored.\n";
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
Loading…
Reference in New Issue
Block a user