From 6ebe44d22f6dd1ab9f7aa1f3cfd02be52145d535 Mon Sep 17 00:00:00 2001 From: Chris Lattner Date: Sun, 19 Oct 2003 21:54:13 +0000 Subject: [PATCH] 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 --- tools/bugpoint/ExecutionDriver.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/bugpoint/ExecutionDriver.cpp b/tools/bugpoint/ExecutionDriver.cpp index 28ab9ff18da..635a691822d 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; } -- 2.34.1