Back out revision 1.97, which backed out part of revision 1.96.

Change the default CFLAGS to match the simple defaults that the
tinderboxes use.  By using -fno-strict-aliasing by default we are
choosing to ignore problems in code which had the potential to
shoot ourselves in the foot.
This commit is contained in:
obrien 2008-03-04 19:00:11 +00:00
parent d6dc62ac2d
commit a60b2dd234

View File

@ -36,9 +36,9 @@ CFLAGS ?= -O
.else
CC ?= cc
.if ${MACHINE_ARCH} == "arm"
CFLAGS ?= -O -fno-strict-aliasing -pipe
CFLAGS ?= -Os -pipe
.else
CFLAGS ?= -O2 -fno-strict-aliasing -pipe
CFLAGS ?= -O2 -pipe
.endif
.if defined(NO_STRICT_ALIASING)
CFLAGS += -fno-strict-aliasing