mirror of
https://github.com/opnsense/src.git
synced 2026-04-15 14:29:58 -04:00
Don the teflon coated jacket and use the same -O2 optimization options on
the 'i386' kernel that we do all our 64-bit kernels.
This commit is contained in:
parent
2f27e1512c
commit
2ee4b70bec
1 changed files with 1 additions and 7 deletions
|
|
@ -21,14 +21,8 @@ COPTFLAGS?=-O
|
|||
.else
|
||||
. if ${MACHINE_ARCH} == "amd64"
|
||||
COPTFLAGS?=-O2 -frename-registers -pipe
|
||||
. elif ${MACHINE_ARCH} == "ia64"
|
||||
COPTFLAGS?=-O2 -pipe
|
||||
. elif ${MACHINE_ARCH} == "sparc64"
|
||||
COPTFLAGS?=-O2 -pipe
|
||||
. elif ${MACHINE_ARCH} == "arm"
|
||||
COPTFLAGS?=-O2 -pipe
|
||||
. else
|
||||
COPTFLAGS?=-O -pipe
|
||||
COPTFLAGS?=-O2 -pipe
|
||||
. endif
|
||||
. if ${COPTFLAGS:M-O[23s]} != ""
|
||||
COPTFLAGS+= -fno-strict-aliasing
|
||||
|
|
|
|||
Loading…
Reference in a new issue