diff options
author | Misha Brukman <brukman+llvm@gmail.com> | 2003-08-20 20:38:15 +0000 |
---|---|---|
committer | Misha Brukman <brukman+llvm@gmail.com> | 2003-08-20 20:38:15 +0000 |
commit | c1fdca8045b4b4a9121cc399a84ffab05af2f82f (patch) | |
tree | 69dffee3805c374d264ccbea3218a2e8747ed32f | |
parent | cd5e5a6a2a1f094dbb3380f74e76c5f94a330d2e (diff) |
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
-rw-r--r-- | tools/gccld/gccld.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/tools/gccld/gccld.cpp b/tools/gccld/gccld.cpp index ef3d2ae54f..93f0e29715 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; |