* Re: [gentoo-dev] x86 toolchain changes heads up
2007-07-18 8:53 ` Peter Gordon
@ 2007-07-18 9:16 ` Ioannis Aslanidis
2007-07-18 9:19 ` Vlastimil Babka
` (3 subsequent siblings)
4 siblings, 0 replies; 11+ messages in thread
From: Ioannis Aslanidis @ 2007-07-18 9:16 UTC (permalink / raw
To: gentoo-dev
I think it's the other way arround. -march=ix86 is implicit unless you
override it with a user variable.
On 7/18/07, Peter Gordon <codergeek42@gentoo.org> wrote:
> On Tue, 2007-07-17 at 19:47 -0400, Mike Frysinger wrote:
> > historically, gcc on x86 has always defaulted to i386. some people noticed
> > recently that glibc-2.6 fails to build in this situation as they were only
> > setting -mtune via CFLAGS, not -march. i'll be tweaking gcc so that it will
> > default -march based on your CHOST. so all the i686-* people will now have a
> > default -march=i686 implied in their gcc systems, i586-* people will
> > have -march=i586, etc... keep in mind this is merely the default.
> > -mike
>
> Does this mean that any user-set "-march" flag is overridden for these
> cases? Just curious.
>
> Thanks.
> --
> Peter Gordon (codergeek42)
> Gentoo Forums Global Moderator
> GnuPG Public Key ID: 0xFFC19479 / Fingerprint:
> DD68 A414 56BD 6368 D957 9666 4268 CB7A FFC1 9479
> My Blog: http://thecodergeek.com/blog/
>
>
>
--
Ioannis Aslanidis
<deathwing00[at]gentoo.org> 0xB9B11F4E
--
gentoo-dev@gentoo.org mailing list
^ permalink raw reply [flat|nested] 11+ messages in thread
* Re: [gentoo-dev] x86 toolchain changes heads up
2007-07-18 8:53 ` Peter Gordon
2007-07-18 9:16 ` Ioannis Aslanidis
@ 2007-07-18 9:19 ` Vlastimil Babka
2007-07-18 13:35 ` [gentoo-dev] " Ryan Hill
2007-07-18 14:06 ` [gentoo-dev] " Andrew Gaffney
` (2 subsequent siblings)
4 siblings, 1 reply; 11+ messages in thread
From: Vlastimil Babka @ 2007-07-18 9:19 UTC (permalink / raw
To: gentoo-dev
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1
Peter Gordon wrote:
> On Tue, 2007-07-17 at 19:47 -0400, Mike Frysinger wrote:
>> historically, gcc on x86 has always defaulted to i386. some people noticed
>> recently that glibc-2.6 fails to build in this situation as they were only
>> setting -mtune via CFLAGS, not -march. i'll be tweaking gcc so that it will
>> default -march based on your CHOST. so all the i686-* people will now have a
>> default -march=i686 implied in their gcc systems, i586-* people will
>> have -march=i586, etc... keep in mind this is merely the default.
>> -mike
>
> Does this mean that any user-set "-march" flag is overridden for these
> cases? Just curious.
I think he meant CHOST sets just *default* so any user-set -march
overrides that.
But I wonder what happens to user-set -mtune then? Since AFAIK -march
implies -mtune, will also the default -march override user-set -mtune?
- --
Vlastimil Babka (Caster)
Gentoo/Java
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.7 (GNU/Linux)
Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org
iD8DBQFGndsrtbrAj05h3oQRAp5hAJ4in2JnV637D7GyDMvG6hc8A8/n4QCeK9Eo
IFUTZxAFqfSVx3Za64GQM0c=
=6wSA
-----END PGP SIGNATURE-----
--
gentoo-dev@gentoo.org mailing list
^ permalink raw reply [flat|nested] 11+ messages in thread
* [gentoo-dev] Re: x86 toolchain changes heads up
2007-07-18 9:19 ` Vlastimil Babka
@ 2007-07-18 13:35 ` Ryan Hill
0 siblings, 0 replies; 11+ messages in thread
From: Ryan Hill @ 2007-07-18 13:35 UTC (permalink / raw
To: gentoo-dev
Vlastimil Babka wrote:
> Peter Gordon wrote:
>> On Tue, 2007-07-17 at 19:47 -0400, Mike Frysinger wrote:
>>> historically, gcc on x86 has always defaulted to i386. some people noticed
>>> recently that glibc-2.6 fails to build in this situation as they were only
>>> setting -mtune via CFLAGS, not -march. i'll be tweaking gcc so that it will
>>> default -march based on your CHOST. so all the i686-* people will now have a
>>> default -march=i686 implied in their gcc systems, i586-* people will
>>> have -march=i586, etc... keep in mind this is merely the default.
>>> -mike
>> Does this mean that any user-set "-march" flag is overridden for these
>> cases? Just curious.
>
> I think he meant CHOST sets just *default* so any user-set -march
> overrides that.
> But I wonder what happens to user-set -mtune then? Since AFAIK -march
> implies -mtune, will also the default -march override user-set -mtune?
Previously GCC defaulted to -march=i386, which implied -mtune=i386
(actually, -mcpu for some reason (?)), when neither were set. People
are setting CFLAGS="-mtune=pentium4 -O2 -fblah..." which therefore is
defaulting to -march=i386 -mtune=pentium4. glibc-2.6 requires >=
-march=i486. Kaboom.
Now -march=$(echo $CHOST | awk -F- '{ print $1 }'), which implies
-mtune=echo $CHOST | awk -F- '{ print $1 }' when neither are set. If
_either_ are set by the user, they are overridden.
ie. you can still set -march=i386 or -mtune=i386 or whatever you like.
--
dirtyepic salesman said this vacuum's guaranteed
gentoo org it could suck an ancient virus from the sea
9B81 6C9F E791 83BB 3AB3 5B2D E625 A073 8379 37E8 (0x837937E8)
--
gentoo-dev@gentoo.org mailing list
^ permalink raw reply [flat|nested] 11+ messages in thread
* Re: [gentoo-dev] x86 toolchain changes heads up
2007-07-18 8:53 ` Peter Gordon
2007-07-18 9:16 ` Ioannis Aslanidis
2007-07-18 9:19 ` Vlastimil Babka
@ 2007-07-18 14:06 ` Andrew Gaffney
2007-07-18 17:04 ` Mike Frysinger
2007-07-19 7:15 ` Peter Gordon
4 siblings, 0 replies; 11+ messages in thread
From: Andrew Gaffney @ 2007-07-18 14:06 UTC (permalink / raw
To: gentoo-dev
Peter Gordon wrote:
> On Tue, 2007-07-17 at 19:47 -0400, Mike Frysinger wrote:
>> historically, gcc on x86 has always defaulted to i386. some people noticed
>> recently that glibc-2.6 fails to build in this situation as they were only
>> setting -mtune via CFLAGS, not -march. i'll be tweaking gcc so that it will
>> default -march based on your CHOST. so all the i686-* people will now have a
>> default -march=i686 implied in their gcc systems, i586-* people will
>> have -march=i586, etc... keep in mind this is merely the default.
>> -mike
>
> Does this mean that any user-set "-march" flag is overridden for these
> cases? Just curious.
You quoted the answer :) These flags are "merely the default". Any
user-specified flags will override the default. For example, if you have
CFLAGS="-march=i586" with a i686 CHOST, it'd be effectively like calling gcc
with 'gcc -march=i686 -march=i586'. The later option would win.
--
Andrew Gaffney http://dev.gentoo.org/~agaffney/
Gentoo Linux Developer Catalyst/Installer + x86 release coordinator
--
gentoo-dev@gentoo.org mailing list
^ permalink raw reply [flat|nested] 11+ messages in thread
* Re: [gentoo-dev] x86 toolchain changes heads up
2007-07-18 8:53 ` Peter Gordon
` (2 preceding siblings ...)
2007-07-18 14:06 ` [gentoo-dev] " Andrew Gaffney
@ 2007-07-18 17:04 ` Mike Frysinger
2007-07-19 7:15 ` Peter Gordon
4 siblings, 0 replies; 11+ messages in thread
From: Mike Frysinger @ 2007-07-18 17:04 UTC (permalink / raw
To: gentoo-dev
[-- Attachment #1: Type: text/plain, Size: 743 bytes --]
On Wednesday 18 July 2007, Peter Gordon wrote:
> On Tue, 2007-07-17 at 19:47 -0400, Mike Frysinger wrote:
> > historically, gcc on x86 has always defaulted to i386. some people
> > noticed recently that glibc-2.6 fails to build in this situation as they
> > were only setting -mtune via CFLAGS, not -march. i'll be tweaking gcc so
> > that it will default -march based on your CHOST. so all the i686-*
> > people will now have a default -march=i686 implied in their gcc systems,
> > i586-* people will have -march=i586, etc... keep in mind this is merely
> > the default. -mike
>
> Does this mean that any user-set "-march" flag is overridden for these
> cases? Just curious.
*cough* keep in mind this is merely the default *cough*
-mike
[-- Attachment #2: This is a digitally signed message part. --]
[-- Type: application/pgp-signature, Size: 827 bytes --]
^ permalink raw reply [flat|nested] 11+ messages in thread
* Re: [gentoo-dev] x86 toolchain changes heads up
2007-07-18 8:53 ` Peter Gordon
` (3 preceding siblings ...)
2007-07-18 17:04 ` Mike Frysinger
@ 2007-07-19 7:15 ` Peter Gordon
4 siblings, 0 replies; 11+ messages in thread
From: Peter Gordon @ 2007-07-19 7:15 UTC (permalink / raw
To: gentoo-dev
[-- Attachment #1: Type: text/plain, Size: 470 bytes --]
On Wed, 2007-07-18 at 01:53 -0700, Peter Gordon wrote:
> Does this mean that any user-set "-march" flag is overridden for these
> cases? Just curious.
Thanks for the explanations given, Mike, Ioannis, Ryan, and Andre! I'm
much clearer on the isue now. :]
--
Peter Gordon (codergeek42)
Gentoo Forums Global Moderator
GnuPG Public Key ID: 0xFFC19479 / Fingerprint:
DD68 A414 56BD 6368 D957 9666 4268 CB7A FFC1 9479
My Blog: http://thecodergeek.com/blog/
[-- Attachment #2: This is a digitally signed message part --]
[-- Type: application/pgp-signature, Size: 189 bytes --]
^ permalink raw reply [flat|nested] 11+ messages in thread