From owner-svn-src-head@FreeBSD.ORG Wed Oct 21 19:35:41 2009 Return-Path: Delivered-To: svn-src-head@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 48308106568B; Wed, 21 Oct 2009 19:35:41 +0000 (UTC) (envelope-from rdivacky@vlk.vlakno.cz) Received: from vlakno.cz (77-93-215-190.static.masterinter.net [77.93.215.190]) by mx1.freebsd.org (Postfix) with ESMTP id F190D8FC08; Wed, 21 Oct 2009 19:35:39 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by vlakno.cz (Postfix) with ESMTP id 4A6859CB0E8; Wed, 21 Oct 2009 21:35:01 +0200 (CEST) X-Virus-Scanned: amavisd-new at vlakno.cz Received: from vlakno.cz ([127.0.0.1]) by localhost (lev.vlakno.cz [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id iT6cgdYS-fzK; Wed, 21 Oct 2009 21:34:59 +0200 (CEST) Received: from vlk.vlakno.cz (localhost [127.0.0.1]) by vlakno.cz (Postfix) with ESMTP id 010389CB148; Wed, 21 Oct 2009 21:34:59 +0200 (CEST) Received: (from rdivacky@localhost) by vlk.vlakno.cz (8.14.3/8.14.3/Submit) id n9LJYwSt014346; Wed, 21 Oct 2009 21:34:58 +0200 (CEST) (envelope-from rdivacky) Date: Wed, 21 Oct 2009 21:34:58 +0200 From: Roman Divacky To: John Baldwin Message-ID: <20091021193458.GA14138@freebsd.org> References: <200910211926.n9LJQDYF008372@svn.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <200910211926.n9LJQDYF008372@svn.freebsd.org> User-Agent: Mutt/1.4.2.3i Cc: svn-src-head@FreeBSD.org, svn-src-all@FreeBSD.org, src-committers@FreeBSD.org Subject: Re: svn commit: r198344 - head/contrib/gcc/config/i386 X-BeenThere: svn-src-head@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: SVN commit messages for the src tree for head/-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 21 Oct 2009 19:35:41 -0000 On Wed, Oct 21, 2009 at 07:26:13PM +0000, John Baldwin wrote: > Author: jhb > Date: Wed Oct 21 19:26:12 2009 > New Revision: 198344 > URL: http://svn.freebsd.org/changeset/base/198344 > > Log: > Change gcc to assume a default machine architecture of 486 instead of 386 > on "i386". Doing it in the compiler is deemed to be less fragile then > attempting to provide a default -march setting via bsd.cpu.mk. FreeBSD > itself has not supported plain 386 CPUs since 5.x. not only less fragile but not working for cross tools etc. which sets NO_CPU_CFLAGS. thank you John for this!