2002-07-23 17:56:53 +00:00
|
|
|
//===-- PluginLoader.cpp - Implement -load command line option ------------===//
|
2003-10-20 19:43:21 +00:00
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
|
|
|
// This file was developed by the LLVM research group and is distributed under
|
|
|
|
// the University of Illinois Open Source License. See LICENSE.TXT for details.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
2002-07-23 17:56:53 +00:00
|
|
|
//
|
|
|
|
// This file implements the -load <plugin> command line option processor. When
|
|
|
|
// linked into a program, this new command line option is available that allows
|
|
|
|
// users to load shared objects into the running program.
|
|
|
|
//
|
|
|
|
// Note that there are no symbols exported by the .o file generated for this
|
|
|
|
// .cpp file. Because of this, a program must link against support.o instead of
|
|
|
|
// support.a: otherwise this translation unit will not be included.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2003-10-10 17:01:49 +00:00
|
|
|
#include "Support/DynamicLinker.h"
|
2002-07-23 17:56:53 +00:00
|
|
|
#include "Support/CommandLine.h"
|
2003-06-30 21:59:07 +00:00
|
|
|
#include "Config/dlfcn.h"
|
|
|
|
#include "Config/link.h"
|
2002-07-25 06:17:51 +00:00
|
|
|
#include <iostream>
|
2002-07-23 17:56:53 +00:00
|
|
|
|
|
|
|
namespace {
|
|
|
|
struct PluginLoader {
|
|
|
|
void operator=(const std::string &Filename) {
|
2003-10-10 17:01:49 +00:00
|
|
|
std::string ErrorMessage;
|
|
|
|
if (LinkDynamicObject (Filename.c_str (), &ErrorMessage))
|
|
|
|
std::cerr << "Error opening '" << Filename << "': " << ErrorMessage
|
|
|
|
<< "\n -load request ignored.\n";
|
2002-07-23 17:56:53 +00:00
|
|
|
}
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
// This causes operator= above to be invoked for every -load option.
|
2002-07-25 06:17:51 +00:00
|
|
|
static cl::opt<PluginLoader, false, cl::parser<std::string> >
|
2002-07-23 17:56:53 +00:00
|
|
|
LoadOpt("load", cl::ZeroOrMore, cl::value_desc("plugin.so"),
|
|
|
|
cl::desc("Load the specified plugin"));
|