Compile the kernel with -O2 on ia64 by default.

This commit is contained in:
Marcel Moolenaar 2004-03-21 05:10:34 +00:00
parent 1950e64cb2
commit fb1eeb8ede

View File

@ -21,6 +21,8 @@ COPTFLAGS?=-O
.else
. if ${MACHINE_ARCH} == "amd64"
COPTFLAGS?=-O2 -frename-registers -pipe
. elif ${MACHINE_ARCH} == "ia64"
COPTFLAGS?=-O2 -pipe
. else
COPTFLAGS?=-O -pipe
. endif