aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2003-10-19 21:54:13 +0000
committerChris Lattner <sabre@nondot.org>2003-10-19 21:54:13 +0000
commit6ebe44d22f6dd1ab9f7aa1f3cfd02be52145d535 (patch)
tree9df109d3f8921bd04555e67892d8e74282776603
parentb656c20cf1e09dbf8ba6dabaaba423790c7a0fa8 (diff)
Ok, return an explicit path to the shared object, unbreaking code generator
debugging with the JIT git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@9273 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--tools/bugpoint/ExecutionDriver.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/bugpoint/ExecutionDriver.cpp b/tools/bugpoint/ExecutionDriver.cpp
index 28ab9ff18d..635a691822 100644
--- a/tools/bugpoint/ExecutionDriver.cpp
+++ b/tools/bugpoint/ExecutionDriver.cpp
@@ -172,7 +172,7 @@ std::string BugDriver::compileSharedObject(const std::string &BytecodeFile) {
// Remove the intermediate C file
removeFile(OutputCFile);
- return SharedObjectFile;
+ return "./" + SharedObjectFile;
}