This commit is contained in:
Daniel D. Daugherty 2015-05-27 16:15:23 -07:00
commit e4c75c1368

View File

@ -261,7 +261,12 @@ bool ElfFile::specifies_noexecstack() {
}
}
}
// AARCH64 defaults to noexecstack. All others default to execstack.
#ifdef AARCH64
return true;
#else
return false;
#endif
}
#endif