In the last episode (Nov 15), Ion-Mihai Tetcu said:
> buh# grep 'CFLAGS' /etc/make.conf
> CFLAGS= -O2 -pipe
>
> buh# grep -A1 '(BUILD_OPTIMIZED'
> /usr/ports/databases/mysql40-server/Makefile
> .if defined(BUILD_OPTIMIZED)
> CFLAGS+=-O3 -fno-omit-frame-pointer
>
>
> cc -c -I. -I../.
On Sat, 15 Nov 2003 14:36:40 +0200, Ion-Mihai Tetcu <[EMAIL PROTECTED]>
wrote:
>
> Now what flag have precedence, -O2 or -O3 ?
>
>From the gcc man page (and yes, cc is really just gcc):
"If you use multiple -O options, with or without level
numbers, the last such option is the one that is effe
Hi,
buh# grep 'CFLAGS' /etc/make.conf
CFLAGS= -O2 -pipe
and
/usr/ports/mysql40-server# make -DBUILD_OPTIMIZED
(
buh# grep -A1 '(BUILD_OPTIMIZED' /usr/ports/databases/mysql40-server/Makefile
.if defined(BUILD_OPTIMIZED)
CFLAGS+=-O3 -fno-omit-frame-pointer
)
result:
cc -c -I. -I../.