Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 10 Mar 2010 22:33:32 +0000 (UTC)
From:      Juli Mallett <jmallett@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-user@freebsd.org
Subject:   svn commit: r204987 - user/jmallett/octeon/contrib/gcc/config/mips
Message-ID:  <201003102233.o2AMXW1V081917@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: jmallett
Date: Wed Mar 10 22:33:32 2010
New Revision: 204987
URL: http://svn.freebsd.org/changeset/base/204987

Log:
  Don't set a default ISA like that.  The from-abi default is good enough and
  more correct.  This hopefully unbreaks my overriding of the default ISA based
  on the TARGET_CPUTYPE.

Modified:
  user/jmallett/octeon/contrib/gcc/config/mips/freebsd.h

Modified: user/jmallett/octeon/contrib/gcc/config/mips/freebsd.h
==============================================================================
--- user/jmallett/octeon/contrib/gcc/config/mips/freebsd.h	Wed Mar 10 22:23:55 2010	(r204986)
+++ user/jmallett/octeon/contrib/gcc/config/mips/freebsd.h	Wed Mar 10 22:33:32 2010	(r204987)
@@ -259,22 +259,18 @@ Boston, MA 02110-1301, USA.  */
 #if MIPS_ABI_DEFAULT == ABI_N32
 #define DRIVER_SELF_SPECS \
 	"%{!EB:%{!EL:%(endian_spec)}}", \
-	"%{!march=*: -march=mips64}",   \
 	"%{!mabi=*: -mabi=n32}"
 #elif MIPS_ABI_DEFAULT == ABI_64
 #define DRIVER_SELF_SPECS \
 	"%{!EB:%{!EL:%(endian_spec)}}", \
-	"%{!march=*: -march=mips64}",   \
 	"%{!mabi=*: -mabi=64}"
 #elif MIPS_ABI_DEFAULT == ABI_O64
 #define DRIVER_SELF_SPECS \
 	"%{!EB:%{!EL:%(endian_spec)}}", \
-	"%{!march=*: -march=mips64}",   \
 	"%{!mabi=*: -mabi=o64}"
 #else /* default to o32 */
 #define DRIVER_SELF_SPECS \
 	"%{!EB:%{!EL:%(endian_spec)}}", \
-	"%{!march=*: -march=mips32}",   \
 	"%{!mabi=*: -mabi=32}"
 #endif
 



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201003102233.o2AMXW1V081917>