Enable non-executable stacks by default on RISC-V.
Reviewed by: markj Sponsored by: DARPA Differential Revision: https://reviews.freebsd.org/D17878
This commit is contained in:
parent
c5e797a836
commit
4bf4b0f139
@ -120,7 +120,8 @@ SYSCTL_INT(_debug, OID_AUTO, __elfN(legacy_coredump), CTLFLAG_RW,
|
||||
|
||||
int __elfN(nxstack) =
|
||||
#if defined(__amd64__) || defined(__powerpc64__) /* both 64 and 32 bit */ || \
|
||||
(defined(__arm__) && __ARM_ARCH >= 7) || defined(__aarch64__)
|
||||
(defined(__arm__) && __ARM_ARCH >= 7) || defined(__aarch64__) || \
|
||||
defined(__riscv)
|
||||
1;
|
||||
#else
|
||||
0;
|
||||
|
Loading…
Reference in New Issue
Block a user