From: Misha Brukman Date: Wed, 20 Aug 2003 20:38:15 +0000 (+0000) Subject: Make the bytecode file executable as well for LLEE purposes. X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=c1fdca8045b4b4a9121cc399a84ffab05af2f82f;p=oota-llvm.git Make the bytecode file executable as well for LLEE purposes. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@7992 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/tools/gccld/gccld.cpp b/tools/gccld/gccld.cpp index ef3d2ae54fa..93f0e297155 100644 --- a/tools/gccld/gccld.cpp +++ b/tools/gccld/gccld.cpp @@ -440,6 +440,9 @@ int main(int argc, char **argv) { // Make the script executable... chmod(OutputFilename.c_str(), 0755); + + // Make the bytecode file directly executable in LLEE as well + chmod(RealBytecodeOutput.c_str(), 0755); } return 0;