From: Chris Lattner Date: Sun, 19 Oct 2003 21:54:13 +0000 (+0000) Subject: Ok, return an explicit path to the shared object, unbreaking code generator X-Git-Tag: android-x86-6.0-r1~1003^2~58643 X-Git-Url: http://git.osdn.net/view?a=commitdiff_plain;h=6ebe44d22f6dd1ab9f7aa1f3cfd02be52145d535;p=android-x86%2Fexternal-llvm.git 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 --- 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; }