Cflags: As said, remove -mcpu=i686 and add -march=pentium3, -O3 (I find this best after doing some benchmarks, but others find -O2 or -Os better), add -ffast-math
Chost: Change i386 to i686
Use: Add gtk gtk2 -kde -qt (if you want gnome you don't want these), and remove the 3dnow (as said before)
You can also try to add
LDFLAGS
Also you can try
nptl
Here are my make.conf for a Pentium4 system:
Code: Select all
CFLAGS="-O3 -march=pentium4 -fomit-frame-pointer -ffast-math"
CHOST="i686-pc-linux-gnu"
CXXFLAGS="${CFLAGS}"
LDFLAGS="-Wl,-O1"
MAKEOPTS="-j2"
USE="mmx mmx2 sse sse2 X gnome gtk gtk2 -kde -qt alsa perl python mpeg avi png jpeg oggvorbis quicktime spell xmms nptl esd -arts opengl"