From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 4.0.0 (2022-12-14) on finch.gentoo.org X-Spam-Level: X-Spam-Status: No, score=-1.0 required=5.0 tests=DMARC_MISSING, MAILING_LIST_MULTI autolearn=unavailable autolearn_force=no version=4.0.0 Received: from canuck.com (the-gimp.canuck.com [216.248.224.12]) by chiba.3jane.net (Postfix) with ESMTP id 59782AC6D2 for ; Tue, 4 Jun 2002 22:26:32 -0500 (CDT) Received: from the-gimp (the-gimp [216.248.224.12]) by canuck.com (8.9.3/8.9.3) with ESMTP id VAA27860218 for ; Tue, 4 Jun 2002 21:22:07 -0600 (MDT) Date: Tue, 4 Jun 2002 21:22:07 -0600 From: Dave Lee X-Sender: davel@the-gimp To: gentoo-dev Subject: Re: [gentoo-dev] gcc 3.1 inconsistencies : In-Reply-To: <20020605032351.4194bfa6.spider@gentoo.org> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: gentoo-dev-admin@gentoo.org Errors-To: gentoo-dev-admin@gentoo.org X-BeenThere: gentoo-dev@gentoo.org X-Mailman-Version: 2.0.6 Precedence: bulk Reply-To: gentoo-dev@gentoo.org List-Help: List-Post: List-Subscribe: , List-Id: Gentoo Linux developer list List-Unsubscribe: , List-Archive: X-Archives-Salt: 440050a8-c125-48f2-a4ed-47d586945ad6 X-Archives-Hash: c2ca6a5a688b13d1e4141ac2b8a9cff4 Spider wrote: > soo, right now I'm running march=athlon-tbird -O3 -pipe for most things In case anybody is curious like I was: I didn't know the difference between the various athlon arch settings, athlon-tbird, athlon-xp, etc. I found that there are two athlon variations, those with the sse instruction set and those w/o sse. no sse: athlon, athlon-tbird sse: athlon-4, athlon-xp, athlon-mp `grep sse /proc/cpuinfo` to see if your cpu has sse, though I don't know how reliable cpuinfo is. I have a duron 1GHz, and it has sse, but earlier durons, <1GHz, don't have sse. also, when you do either of -msse -m3dnow gcc automagically does -mmmmx for you. from what I see, athlon and athlon-tbird are identical arch settings, as are athlon-4, athlon-xp, and athlon-mp. so can anyone verify this? of course its possible the different names are there for finer grained code gen in the future. Dave