Hi,
How the flags for gcc are make for the Makefile under linux for the 1.1alpha6? I make a configure and after there is:
all:
gcc -o ../../bin/zabbix_server -g -O2 ....
Why put -O2 near -g ? Why not just -O3 ? (I don't really want to make a gdb zabbix_server
)
My environement variable CFLAGS is void.
Thanks
EDIT:
In fact, when CLFAGS is void, configure set the flags to -g -O2, but it can be
avoid by export CFLAGS=`-pipe -march=pentium4 -msse2' for example
How the flags for gcc are make for the Makefile under linux for the 1.1alpha6? I make a configure and after there is:
all:
gcc -o ../../bin/zabbix_server -g -O2 ....
Why put -O2 near -g ? Why not just -O3 ? (I don't really want to make a gdb zabbix_server
)My environement variable CFLAGS is void.
Thanks
EDIT:
In fact, when CLFAGS is void, configure set the flags to -g -O2, but it can be
avoid by export CFLAGS=`-pipe -march=pentium4 -msse2' for example