Make the bytecode file executable as well for LLEE purposes.

llvm-svn: 7992
This commit is contained in:
Misha Brukman 2003-08-20 20:38:15 +00:00
parent ca386ad6d8
commit 1b0f71e3f1

View File

@ -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;