1
0
mirror of https://git.FreeBSD.org/src.git synced 2025-01-31 16:57:10 +00:00

Switch the default CFLAGS to -O2 -pipe.

Submitted by:	obrien
This commit is contained in:
Dag-Erling Smørgrav 2004-10-25 20:04:50 +00:00
parent 84bb6a2e75
commit ecdb24f5d3
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=136954

View File

@ -37,7 +37,7 @@ CC ?= c89
CFLAGS ?= -O
.else
CC ?= cc
CFLAGS ?= -O -pipe
CFLAGS ?= -O2 -pipe
.endif
CXX ?= c++