From: Segher Boessenkool Date: Mon, 3 Dec 2018 19:34:22 +0000 (+0100) Subject: Disallow configuring for powerpc*-*-linux*paired X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=d89057777e7468b3089afdb64a534e38d1a13680;p=gcc.git Disallow configuring for powerpc*-*-linux*paired The proper way, that is. * gcc/config.gcc (Unsupported targets): Add powerpc*-*-linux*paired*. (powerpc*-*-linux*): Don't handle it here. From-SVN: r266763 --- diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 36906e314b7..1efc9270f9b 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2018-12-03 Segher Boessenkool + + * gcc/config.gcc (Unsupported targets): Add powerpc*-*-linux*paired*. + (powerpc*-*-linux*): Don't handle it here. + 2018-12-03 Jeff Law * config/h8300/h8300.md (qi3_1): Add gcc_unreachable to keep diff --git a/gcc/config.gcc b/gcc/config.gcc index f6162ed496e..cbabd21b337 100644 --- a/gcc/config.gcc +++ b/gcc/config.gcc @@ -278,6 +278,7 @@ case ${target} in | m68k-*-uclinuxoldabi* \ | mips64orion*-*-rtems* \ | pdp11-*-bsd \ + | powerpc*-*-linux*paired* \ | sparc-hal-solaris2* \ | thumb-*-* \ | *-*-freebsd[12] | *-*-freebsd[1234].* \ @@ -2660,7 +2661,7 @@ powerpc*-*-linux*) all) maybe_biarch=yes ;; esac case ${target} in - powerpc64*-*-linux*spe* | powerpc*-*-linux*paired*) + powerpc64*-*-linux*spe*) echo "*** Configuration ${target} not supported" 1>&2 exit 1 ;;