projects
/
oota-llvm.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
cd5e5a6
)
Make the bytecode file executable as well for LLEE purposes.
author
Misha Brukman
<brukman+llvm@gmail.com>
Wed, 20 Aug 2003 20:38:15 +0000
(20:38 +0000)
committer
Misha Brukman
<brukman+llvm@gmail.com>
Wed, 20 Aug 2003 20:38:15 +0000
(20:38 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@7992
91177308
-0d34-0410-b5e6-
96231b3b80d8
tools/gccld/gccld.cpp
patch
|
blob
|
history
diff --git
a/tools/gccld/gccld.cpp
b/tools/gccld/gccld.cpp
index ef3d2ae54fae49e709f33f6d677cc9f581a65201..93f0e297155052cc81575901bbd3885eaa933fa7 100644
(file)
--- 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;