1# options for all the directories below
2
3COPTS+=-Oz -fno-stack-protector
4COPTS+=-fno-unwind-tables -fno-asynchronous-unwind-tables
5
6.if ${MACHINE} == "amd64"
7COPTS+=-fcf-protection=none -fno-ret-clean
8.endif
9.if ${MACHINE} == "arm64"
10COPTS+=-mbranch-protection=none
11.endif
12
13MAN=
14LDSTATIC=-static
15NOPIE=
16NOMAN=1
17