On Mon, 2003-12-08 at 15:01, Daniel Silverstone wrote:
On Mon, 2003-12-08 at 14:57, Craig wrote:
CHOST="i586-pc-linux-gnu" CFLAGS="-march=i586 -m3dnow -O3 -pipe -fomit-frame-pointer" And running Gentoo Unstable.... Works fine for me.
I'd recommend reducing the -O3 to -O2 since gcc has bugs which will make -O3 sometimes break utterly and in many cases it slows stuff down anyway.
Not to mention that -O3 doesn't guarantee faster code. In fact, lots of things end up much slower, because -O3 generates much larger code, which cocks up the use of the instruction cache.