[llvm-commits] CVS: llvm/tools/gccld/gccld.cpp
Misha Brukman
brukman at cs.uiuc.edu
Wed Aug 20 15:39:10 PDT 2003
Changes in directory llvm/tools/gccld:
gccld.cpp updated: 1.39 -> 1.40
---
Log message:
Make the bytecode file executable as well for LLEE purposes.
---
Diffs of the changes:
Index: llvm/tools/gccld/gccld.cpp
diff -u llvm/tools/gccld/gccld.cpp:1.39 llvm/tools/gccld/gccld.cpp:1.40
--- llvm/tools/gccld/gccld.cpp:1.39 Thu Aug 14 23:56:47 2003
+++ llvm/tools/gccld/gccld.cpp Wed Aug 20 15:38:15 2003
@@ -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;
More information about the llvm-commits
mailing list