diff options
author | Segher Boessenkool <segher@kernel.crashing.org> | 2018-12-03 20:34:22 +0100 |
---|---|---|
committer | Segher Boessenkool <segher@gcc.gnu.org> | 2018-12-03 20:34:22 +0100 |
commit | d89057777e7468b3089afdb64a534e38d1a13680 (patch) | |
tree | de0efd61e4663503ba3b4cdd1a11969baa44010c /gcc/config.gcc | |
parent | 8c6f7e0f35db86ab0bffe63bf0b104e5334a2151 (diff) | |
download | gcc-d89057777e7468b3089afdb64a534e38d1a13680.zip gcc-d89057777e7468b3089afdb64a534e38d1a13680.tar.gz gcc-d89057777e7468b3089afdb64a534e38d1a13680.tar.bz2 |
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
Diffstat (limited to 'gcc/config.gcc')
-rw-r--r-- | gcc/config.gcc | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gcc/config.gcc b/gcc/config.gcc index f6162ed..cbabd21 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 ;; |