Dave Nebinger wrote:

In /etc/make.conf you define your CFLAGS to match your cpu. In your case (which is just like mine) the following should suffice:

CFLAGS="-O2 -march=pentium3 -pipe -mcpu=i686 -fomit-frame-pointer"
CXXFLAGS="${CFLAGS}"


FYI, -mcpu is deprecated, and a synonym for -mtune, which is implied by -march. So you can just take it out and get the same effect.

-Richard

--
gentoo-user@gentoo.org mailing list

Reply via email to