diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 2024-06-02 15:54:04 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 2024-06-02 15:54:04 +0000 |
commit | 1700cdcbfc24ecd73e706bff6335685af5f61cc4 (patch) | |
tree | 2cb9a1009f574c096145705bd0809ef4c73ec218 /distrib | |
parent | 6d5576eba994a4115808a804580d99d5836212fb (diff) |
Due to growth we can't allow -fret-clean behaviour in distrib/special,
so use COPTS+=-fno-ret-clean
Diffstat (limited to 'distrib')
-rw-r--r-- | distrib/special/Makefile.inc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/distrib/special/Makefile.inc b/distrib/special/Makefile.inc index 99547e82a67..83835578de9 100644 --- a/distrib/special/Makefile.inc +++ b/distrib/special/Makefile.inc @@ -4,7 +4,7 @@ COPTS+=-Oz -fno-stack-protector COPTS+=-fno-unwind-tables -fno-asynchronous-unwind-tables .if ${MACHINE} == "amd64" -COPTS+=-fcf-protection=none +COPTS+=-fcf-protection=none -fno-ret-clean .endif .if ${MACHINE} == "arm64" COPTS+=-mbranch-protection=none |