Revert "[mips] revert r366664 - flip mips back from -O2 to -O"

This reverts commit bd72252aac.

The commit at hand breaks the build for all mips targets and does not
have a one-liner fix.

make[5]: "/usr/src/share/mk/sys.mk" line 169: Malformed conditional (${MACHINE_CPUARCH} == "mips" && ${COMPILER_TYPE} == "gcc")
This commit is contained in:
Mateusz Guzik 2021-01-22 10:17:34 +00:00
parent 64b1230c03
commit bb3b6995c4

View File

@ -166,14 +166,7 @@ CC ?= c89
CFLAGS ?= -O
.else
CC ?= cc
.if ${MACHINE_CPUARCH} == "mips" && ${COMPILER_TYPE} == "gcc"
# Note: there are currently issues generating code gcc-6.x targeting
# code for at least mips32. The system hits infinite page faults
# when starting /sbin/init if -O2 is used.
CFLAGS ?= -O -pipe
.else
CFLAGS ?= -O2 -pipe
.endif
.if defined(NO_STRICT_ALIASING)
CFLAGS += -fno-strict-aliasing
.endif