summaryrefslogtreecommitdiffstats
path: root/tools
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2003-10-14 22:24:31 +0000
committerChris Lattner <sabre@nondot.org>2003-10-14 22:24:31 +0000
commit7dac658792425c10274594782d6fcf10208a16f0 (patch)
tree74d97ea26444e54021af3c0ec7f7dc14b32db0dc /tools
parent769f1fe6728ffb5627ae0cedc392576d6e701a5a (diff)
downloadexternal_llvm-7dac658792425c10274594782d6fcf10208a16f0.zip
external_llvm-7dac658792425c10274594782d6fcf10208a16f0.tar.gz
external_llvm-7dac658792425c10274594782d6fcf10208a16f0.tar.bz2
add support forloading additional .so files on the command line
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@9131 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'tools')
-rw-r--r--tools/bugpoint/ExecutionDriver.cpp7
1 files changed, 6 insertions, 1 deletions
diff --git a/tools/bugpoint/ExecutionDriver.cpp b/tools/bugpoint/ExecutionDriver.cpp
index 749dac5..e0e0b70 100644
--- a/tools/bugpoint/ExecutionDriver.cpp
+++ b/tools/bugpoint/ExecutionDriver.cpp
@@ -42,6 +42,11 @@ namespace {
cl::opt<std::string>
InputFile("input", cl::init("/dev/null"),
cl::desc("Filename to pipe in as stdin (default: /dev/null)"));
+
+ cl::list<std::string>
+ AdditionalSOs("additional-so",
+ cl::desc("Additional shared objects to load "
+ "into executing programs"));
}
// Anything specified after the --args option are taken as arguments to the
@@ -125,7 +130,7 @@ std::string BugDriver::executeProgram(std::string OutputFile,
OutputFile = getUniqueFilename(OutputFile);
// Figure out which shared objects to run, if any.
- std::vector<std::string> SharedObjs;
+ std::vector<std::string> SharedObjs(AdditionalSOs);
if (!SharedObj.empty())
SharedObjs.push_back(SharedObj);