Re: [gentoo-user] chost, cflags, and cxxflags examples

2003-03-05 Thread Spider
begin quote On 04 Mar 2003 20:59:17 + Mike Williams <[EMAIL PROTECTED]> wrote: > I use this on my athlon-xp (someone posted it here a while ago) Do you even -know- what several of theese do? -ffast-math *shudder* Well, As long as you rebuild a package with "emerge -e package" before doin

Re: [gentoo-user] chost, cflags, and cxxflags examples

2003-03-05 Thread Spider
begin quote On Tue, 04 Mar 2003 17:59:10 -0500 Jason Giangrande <[EMAIL PROTECTED]> wrote: > Thanks for the link. Do you know what "-fomit-frame-pointer" does? > It's one of the recommend flags for pretty much every processor. > it omits the frame pointer, a register that points back in the

Re: [gentoo-user] chost, cflags, and cxxflags examples

2003-03-05 Thread Stephan Feder
Everyone take a look at /usr/lib/gcc-lib/i586-pc-linux-gnu/3.2.2/specs Especially section *cpp_cpucommon: should explain how the CPU related flags are evaluated. Regards, Stephan -- Alex Schuster wrote: > > Richard writes: > > > CFLAGS="-march=athlon-xp -mcpu=athlon-xp -O3 -pi

Re: [gentoo-user] chost, cflags, and cxxflags examples

2003-03-04 Thread Richard Kilgore
On Tue, Mar 04, 2003 at 04:04:08PM -0500, Jason Giangrande wrote: > Thanks. Quick question, though. Why athlon-xp instead of athlon-mp? > > Jason That's what mine are :). If you actually have MPs, I'd try athlon-mp. - richard > Richard Kilgore wrote: > >On Tue, Mar 04, 2003 at 03:44:32PM

Re: [gentoo-user] chost, cflags, and cxxflags examples

2003-03-04 Thread Jason Giangrande
It say's not to use Athlon-4. I'm not even sure what that is, but the make.conf file has an example with athlon-xp so I would assume it's ok. Jason Ted Ozolins wrote: Mike Williams wrote: On Tue, 2003-03-04 at 20:44, Jason Giangrande wrote: Anyone have any examples of the CFLAGS and CXXFLA

Re: [gentoo-user] chost, cflags, and cxxflags examples

2003-03-04 Thread Ted Ozolins
Mike Williams wrote: On Tue, 2003-03-04 at 20:44, Jason Giangrande wrote: Anyone have any examples of the CFLAGS and CXXFLAGS settings for a dual Athlon system or know of any links that explain these settings more? I use this on my athlon-xp (someone posted it here a while ago) CFLAGS=

Re: [gentoo-user] chost, cflags, and cxxflags examples

2003-03-04 Thread Jason Giangrande
I don't believe there are any other differecnces between the XP and MP and some early XP's didn't have the smp capability disabled, so, I would imagine, they are exactly like MP's. Jason Ted Goodridge, Jr wrote: ->Physically, I believe, the CPUs are the same. i.e. you can do SMP with 2 ->XP's

Re: [gentoo-user] chost, cflags, and cxxflags examples

2003-03-04 Thread Jason Giangrande
Thanks for the link. Do you know what "-fomit-frame-pointer" does? It's one of the recommend flags for pretty much every processor. Jason Dhruba Bandopadhyay wrote: Jason Giangrande said: Anyone have any examples of the CFLAGS and CXXFLAGS settings for a dual Athlon system or know of any l

RE: [gentoo-user] chost, cflags, and cxxflags examples

2003-03-04 Thread Kevin J. Anderson
->-Original Message- ->From: Ted Goodridge, Jr [mailto:[EMAIL PROTECTED] ->Sent: Tuesday, March 04, 2003 5:45 PM ->To: Kevin J. Anderson; [EMAIL PROTECTED] ->Subject: Re: [gentoo-user] chost, cflags, and cxxflags examples -> -> ->> ->Physically, I believe, t

Re: [gentoo-user] chost, cflags, and cxxflags examples

2003-03-04 Thread Ted Goodridge, Jr
->Physically, I believe, the CPUs are the same. i.e. you can do SMP with 2 ->XP's. There may be subtle differences in optimizations from a GCC point ->of view though. Physcially the chips are not the same. XP's have SMP disabled. You can hack them by using a connective pen to make them SMP, bu

RE: [gentoo-user] chost, cflags, and cxxflags examples

2003-03-04 Thread Kevin J. Anderson
->-Original Message- ->From: Mike Williams [mailto:[EMAIL PROTECTED] ->Sent: Tuesday, March 04, 2003 4:09 PM ->To: gentoo-user ->Subject: Re: [gentoo-user] chost, cflags, and cxxflags examples -> -> ->On Tue, 2003-03-04 at 21:04, brett holcomb wrote: ->> It d

Re: [gentoo-user] chost, cflags, and cxxflags examples

2003-03-04 Thread Mike Williams
On Tue, 2003-03-04 at 21:04, brett holcomb wrote: > It depends on the Athlon. AMD has XP and MP versions of > the cpus. Richard may have the XP version. Since I have > the MP version I used it. Physically, I believe, the CPUs are the same. i.e. you can do SMP with 2 XP's. There may be subtle

Re: [gentoo-user] chost, cflags, and cxxflags examples

2003-03-04 Thread Mike Williams
On Tue, 2003-03-04 at 20:44, Jason Giangrande wrote: > Anyone have any examples of the CFLAGS and CXXFLAGS settings for a dual > Athlon system or know of any links that explain these settings more? > I use this on my athlon-xp (someone posted it here a while ago) CFLAGS="-march=athlon-xp -O3 -

Re: [gentoo-user] chost, cflags, and cxxflags examples

2003-03-04 Thread Alex Schuster
Richard writes: > CFLAGS="-march=athlon-xp -mcpu=athlon-xp -O3 -pipe" -march (generate code running on that special CPU) includes -mcpu (optimize for that CPU, but make code still run on other CPUs). I guess your -mcpu is just being ignored, but maybe it is overriding the -march?

RE: [gentoo-user] chost, cflags, and cxxflags examples

2003-03-04 Thread Eric Livingston
to specify -mcpu as it's already set by default). Eric > -Original Message- > From: brett holcomb [mailto:[EMAIL PROTECTED] > Sent: Tuesday, March 04, 2003 4:04 PM > To: [EMAIL PROTECTED] > Subject: Re: [gentoo-user] chost, cflags, and cxxflags examples > >

Re: [gentoo-user] chost, cflags, and cxxflags examples

2003-03-04 Thread brett holcomb
It depends on the Athlon. AMD has XP and MP versions of the cpus. Richard may have the XP version. Since I have the MP version I used it. On Tue, 04 Mar 2003 16:04:08 -0500 Jason Giangrande <[EMAIL PROTECTED]> wrote: Thanks. Quick question, though. Why athlon-xp instead of athlon-mp? Jas

Re: [gentoo-user] chost, cflags, and cxxflags examples

2003-03-04 Thread brett holcomb
It tells make how many processes it can run in parallel. Usually the number of cpus plus 1 is recommended. On Tue, 4 Mar 2003 21:11:31 - (GMT) "Dhruba Bandopadhyay" <[EMAIL PROTECTED]> wrote: Richard Kilgore said: CHOST="i686-pc-linux-gnu" CFLAGS="-march=athlon-xp -mcpu=athlon-xp -O3

Re: [gentoo-user] chost, cflags, and cxxflags examples

2003-03-04 Thread Dhruba Bandopadhyay
Richard Kilgore said: > CHOST="i686-pc-linux-gnu" > CFLAGS="-march=athlon-xp -mcpu=athlon-xp -O3 -pipe" > CXXFLAGS="${CFLAGS}" > MAKEOPTS="-j3" What does the last line do? I think mine's on defaults (-j2). -- [EMAIL PROTECTED] mailing list

Re: [gentoo-user] chost, cflags, and cxxflags examples

2003-03-04 Thread Dhruba Bandopadhyay
Jason Giangrande said: > Anyone have any examples of the CFLAGS and CXXFLAGS settings for a dual > Athlon system or know of any links that explain these settings more? http://www.freehackers.org/gentoo/gccflags/flag_gcc3.html -- [EMAIL PROTECTED] mailing list

Re: [gentoo-user] chost, cflags, and cxxflags examples

2003-03-04 Thread Jason Giangrande
Thanks. Quick question, though. Why athlon-xp instead of athlon-mp? Jason Richard Kilgore wrote: On Tue, Mar 04, 2003 at 03:44:32PM -0500, Jason Giangrande wrote: Anyone have any examples of the CFLAGS and CXXFLAGS settings for a dual Athlon system or know of any links that explain these

Re: [gentoo-user] chost, cflags, and cxxflags examples

2003-03-04 Thread brett holcomb
I used march=athlon-mp -O3 -pipe on my Dual Athlon system. On Tue, 04 Mar 2003 15:44:32 -0500 Jason Giangrande <[EMAIL PROTECTED]> wrote: Anyone have any examples of the CFLAGS and CXXFLAGS settings for a dual Athlon system or know of any links that explain these settings more? Thanks. --

Re: [gentoo-user] chost, cflags, and cxxflags examples

2003-03-04 Thread Richard Kilgore
On Tue, Mar 04, 2003 at 03:44:32PM -0500, Jason Giangrande wrote: > Anyone have any examples of the CFLAGS and CXXFLAGS settings for a dual > Athlon system or know of any links that explain these settings more? > > Thanks. Here is what I use. I think I just used the comments in make.conf.

[gentoo-user] chost, cflags, and cxxflags examples

2003-03-04 Thread Jason Giangrande
Anyone have any examples of the CFLAGS and CXXFLAGS settings for a dual Athlon system or know of any links that explain these settings more? Thanks. -- -Jason Giangrande giangrande.org - http://www.giangrande.org Dog's I View - http://www.dogsiview.com