MFp4 (mips2-jnpr):

o Default to -O on mips as well as arm.  -O2 has been strongly implicated
  in many problems in the past, so we're taking a conservative approach
  until the problems are well understood.
This commit is contained in:
Warner Losh 2008-04-04 21:12:40 +00:00
parent 652d402e7b
commit fd08931dd5
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=177925

View File

@ -35,7 +35,7 @@ CC ?= c89
CFLAGS ?= -O
.else
CC ?= cc
.if ${MACHINE_ARCH} == "arm"
.if ${MACHINE_ARCH} == "arm" || ${MACHINE_ARCH} == "mips"
CFLAGS ?= -O -pipe
.else
CFLAGS ?= -O2 -pipe