commit | 90869942e725861d539b7054f4201fe81c10b005 | [log] [tgz] |
---|---|---|
author | Misha Brukman <brukman+llvm@gmail.com> | Wed Aug 20 20:38:15 2003 +0000 |
committer | Misha Brukman <brukman+llvm@gmail.com> | Wed Aug 20 20:38:15 2003 +0000 |
tree | 3d706ba386555fce7d3cf1136613d28509a97222 | |
parent | 820153f20412aadeaee81645d669378572b97991 [diff] [blame] |
Make the bytecode file executable as well for LLEE purposes. llvm-svn: 7992
diff --git a/llvm/tools/gccld/gccld.cpp b/llvm/tools/gccld/gccld.cpp index ef3d2ae..93f0e29 100644 --- a/llvm/tools/gccld/gccld.cpp +++ b/llvm/tools/gccld/gccld.cpp
@@ -440,6 +440,9 @@ // 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;