aboutsummaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
Diffstat (limited to 'tools')
-rw-r--r--tools/gccld/gccld.cpp3
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;