From: Segher Boessenkool Date: Tue, 1 Feb 2005 15:36:42 +0000 (+0100) Subject: config.gcc (powerpc64-*-linux*): Default to -m64 also for specific 64-bit CPUs. X-Git-Tag: releases/gcc-4.0.0~1131 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=d1c8addb269554ac66f494db4f844ca7817a5a27;p=thirdparty%2Fgcc.git config.gcc (powerpc64-*-linux*): Default to -m64 also for specific 64-bit CPUs. 2005-02-01 Segher Boessenkool * config.gcc (powerpc64-*-linux*): Default to -m64 also for specific 64-bit CPUs. From-SVN: r94545 --- diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 88add3a57762..4cbeae3269ab 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2005-02-01 Segher Boessenkool + + * config.gcc (powerpc64-*-linux*): Default to -m64 also for + specific 64-bit CPUs. + 2005-02-01 Richard Earnshaw PR target/16201 diff --git a/gcc/config.gcc b/gcc/config.gcc index 1c6e2fa46d8f..65e6b02a0ba0 100644 --- a/gcc/config.gcc +++ b/gcc/config.gcc @@ -1528,7 +1528,8 @@ avr-*-*) powerpc64-*-linux*) tm_file="rs6000/biarch64.h ${tm_file} dbxelf.h elfos.h svr4.h freebsd-spec.h rs6000/sysv4.h" case x$with_cpu in - x|xpowerpc64|xdefault64) tm_file="${tm_file} rs6000/default64.h";; + x|xpowerpc64|xdefault64|x6[23]0|x970|xG5|xpower[345]|xrs64a) + tm_file="${tm_file} rs6000/default64.h";; esac tm_file="${tm_file} rs6000/linux64.h" tmake_file="rs6000/t-fprules ${tmake_file} rs6000/t-ppccomm rs6000/t-linux64"