[gentoo-user] Bootstrap USE flags opinions?

2005-10-12 Thread Alexey Asprov
Hi list again.. I will attempt to bootstrap with following USE flags for the NPTL. I will not be using Gnome or KDE. I'd appreciate peoples opinion about them and welcome their examples of USE flags ( real working experiences) for bootstraping. This will be done for Pentium3 machine, if this

Re: [gentoo-user] Bootstrap USE flags opinions?

2005-10-12 Thread Dave Nebinger
On Wednesday 12 October 2005 01:54 pm, Alexey Asprov wrote: Hi list again.. Hello Alexey. Just a quick FYI: Your timezone does not appear to be set correctly; I can tell because your sent time is in the future ;-) I will attempt to bootstrap with following USE flags for the NPTL. I will not

Re: [gentoo-user] Bootstrap USE flags opinions?

2005-10-12 Thread maxim wexler
CFLAGS=-O2 -march=pentium3 -pipe -mcpu=i686 -fomit-frame-pointer CXXFLAGS=${CFLAGS} there seems to be some controversy over the use of -fomit-frame-pointer. See the gentoo/doc, IIRC on USE flags. Just what does -fomit etc do? -mw

Re: [gentoo-user] Bootstrap USE flags opinions?

2005-10-12 Thread Alexey Asprov
On Wed, 12 Oct 2005 11:21:08 -0400 Dave Nebinger [EMAIL PROTECTED] wrote: On Wednesday 12 October 2005 01:54 pm, Alexey Asprov wrote: Hi list again.. Hello Alexey. Just a quick FYI: Your timezone does not appear to be set correctly; I can tell because your sent time is in the future ;-)

Re: [gentoo-user] Bootstrap USE flags opinions?

2005-10-12 Thread Billy Holmes
Richard Fish wrote: 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. I think some ebuilds filter out march, but don't filter out mcpu/mtune, so you can still get some processor specific optimizations out of

Re: [gentoo-user] Bootstrap USE flags opinions?

2005-10-12 Thread Richard Fish
maxim wexler wrote: CFLAGS=-O2 -march=pentium3 -pipe -mcpu=i686 -fomit-frame-pointer CXXFLAGS=${CFLAGS} there seems to be some controversy over the use of -fomit-frame-pointer. See the gentoo/doc, IIRC on USE flags. Just what does -fomit etc do? The frame pointer points to the

Re: [gentoo-user] Bootstrap USE flags opinions?

2005-10-12 Thread Dave Nebinger
On Wednesday 12 October 2005 08:17 pm, Alexey Asprov wrote: On Wed, 12 Oct 2005 11:21:08 -0400 Dave Nebinger [EMAIL PROTECTED] wrote: On Wednesday 12 October 2005 01:54 pm, Alexey Asprov wrote: Hi list again.. Hello Alexey. Just a quick FYI: Your timezone does not appear to be set

Re: [gentoo-user] Bootstrap USE flags opinions?

2005-10-12 Thread Richard Fish
Billy Holmes wrote: Richard Fish wrote: 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. I think some ebuilds filter out march, but don't filter out mcpu/mtune, so you can still get some processor