1
0
mirror of https://git.FreeBSD.org/src.git synced 2024-12-13 10:02:38 +00:00

Temporarily back out revision 1.98 to give Portmgr some time to

address PR ports/121363 (current day re-opening of PR ports/73797)
to make ports CFLAGS more independent of src/'s CFLAGS WRT aliasing.

Discussed with: brooks
This commit is contained in:
David E. O'Brien 2008-03-04 20:26:03 +00:00
parent 1cf6e4f5ff
commit 92aa7717fa
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=176806

View File

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