<tecnic5 <at> silvanoc.com> writes: >If you'd like to use the same make.conf for different machines you should >make sure they all have same processors or, at least, same family of > >processors; in your case, I recommend using -mcpu instead of -march. Keep >in mind that K6 processors have their own -marc=k6 and might not be >comptable with -march=i586. More in /etc/make.conf.example.
Good point: -mcpu is deprecated, according to the examples file as of gcc 3.4, SO: CFLAGS="-Os -march=i586 -pipe -fomit-frame-pointer" CHOST="i586-pc-linux-gnu" changed to: CFLAGS="-Os -mtune=i586 -pipe -fomit-frame-pointer" or CFLAGS="-Os -march=i586 -mtune=i586 -pipe -fomit-frame-pointer" <????? Remember I want one set of binaries for both k6 and old pentiums> -- gentoo-user@lists.gentoo.org mailing list