mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-11-02 07:11:49 +00:00
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
This commit is contained in:
parent
cd5e5a6a2a
commit
c1fdca8045
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user