X-Git-Url: http://git.sourceforge.jp/view?a=blobdiff_plain;f=gcc%2Fconfig.gcc;h=3eb886fbb45fc076dbcfd86eeef53d1e37737b3b;hb=8d40ea4504ee85e1a6b73103edb1776141d5d22e;hp=4d1eb8dfc0ef956af2c2ab722d00773107acab29;hpb=47b9273765621f3846842138b66fc8f3ee99c422;p=pf3gnuchains%2Fgcc-fork.git diff --git a/gcc/config.gcc b/gcc/config.gcc index 4d1eb8dfc0e..3eb886fbb45 100644 --- a/gcc/config.gcc +++ b/gcc/config.gcc @@ -1805,27 +1805,17 @@ powerpc-*-rtems*) extra_options="${extra_options} rs6000/sysv4.opt" tmake_file="rs6000/t-fprules rs6000/t-fprules-fpbit rs6000/t-rtems t-rtems rs6000/t-ppccomm" ;; -powerpc-*-linux*altivec*) - tm_file="${tm_file} dbxelf.h elfos.h svr4.h freebsd-spec.h rs6000/sysv4.h rs6000/linux.h rs6000/linuxaltivec.h glibc-stdint.h" - extra_options="${extra_options} rs6000/sysv4.opt" - tmake_file="rs6000/t-fprules rs6000/t-fprules-softfp soft-fp/t-softfp rs6000/t-ppcos ${tmake_file} rs6000/t-ppccomm" - ;; -powerpc-*-linux*spe*) - tm_file="${tm_file} dbxelf.h elfos.h svr4.h freebsd-spec.h rs6000/sysv4.h rs6000/linux.h rs6000/linuxspe.h rs6000/e500.h glibc-stdint.h" - extra_options="${extra_options} rs6000/sysv4.opt" - tmake_file="t-dfprules rs6000/t-fprules rs6000/t-fprules-softfp soft-fp/t-softfp rs6000/t-ppcos ${tmake_file} rs6000/t-ppccomm" - ;; -powerpc-*-linux*paired*) - tm_file="${tm_file} dbxelf.h elfos.h svr4.h freebsd-spec.h rs6000/sysv4.h rs6000/linux.h rs6000/750cl.h glibc-stdint.h" - extra_options="${extra_options} rs6000/sysv4.opt" - tmake_file="rs6000/t-fprules rs6000/t-fprules-softfp soft-fp/t-softfp rs6000/t-ppcos ${tmake_file} rs6000/t-ppccomm" - ;; powerpc-*-linux*) tm_file="${tm_file} dbxelf.h elfos.h svr4.h freebsd-spec.h rs6000/sysv4.h" extra_options="${extra_options} rs6000/sysv4.opt" tmake_file="t-dfprules rs6000/t-fprules rs6000/t-fprules-softfp soft-fp/t-softfp rs6000/t-ppcos ${tmake_file} rs6000/t-ppccomm" - case ${enable_targets}:${cpu_is_64bit} in - *powerpc64* | all:* | *:yes) + maybe_biarch=yes + case ${target} in + powerpc-*-linux*spe* | powerpc-*-linux*paired*) + maybe_biarch= ;; + esac + case ${maybe_biarch}:${enable_targets}:${cpu_is_64bit} in + yes:*powerpc64* | yes:all:* | yes:*:yes) if test x$cpu_is_64bit = xyes; then tm_file="${tm_file} rs6000/default64.h" fi @@ -1837,6 +1827,14 @@ powerpc-*-linux*) tm_file="${tm_file} rs6000/linux.h glibc-stdint.h" ;; esac + case ${target} in + powerpc*-*-linux*altivec*) + tm_file="${tm_file} rs6000/linuxaltivec.h" ;; + powerpc*-*-linux*spe*) + tm_file="${tm_file} rs6000/linuxspe.h rs6000/e500.h" ;; + powerpc*-*-linux*paired*) + tm_file="${tm_file} rs6000/750cl.h" ;; + esac if test x${enable_secureplt} = xyes; then tm_file="rs6000/secureplt.h ${tm_file}" fi