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