提交 ba8d113a 编写于 作者: C cjplummer

8051712: regression Test7107135 crashes

Summary: On AARCH64, make ElfFile::specifies_noexecstack() default to noexectstack
Reviewed-by: dholmes, dlong, aph
上级 053a72e0
......@@ -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
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册