This is the mail archive of the
gcc-patches@gcc.gnu.org
mailing list for the GCC project.
[PATCH] Disallow configuring for powerpc*-*-linux*paired
- From: Segher Boessenkool <segher at kernel dot crashing dot org>
- To: gcc-patches at gcc dot gnu dot org
- Cc: dje dot gcc at gmail dot com, Segher Boessenkool <segher at kernel dot crashing dot org>
- Date: Mon, 3 Dec 2018 19:32:23 +0000
- Subject: [PATCH] Disallow configuring for powerpc*-*-linux*paired
The proper way, that is.
Committing to trunk.
Segher
2018-12-03 Segher Boessenkool <segher@kernel.crashing.org>
* gcc/config.gcc (Unsupported targets): Add powerpc*-*-linux*paired*.
(powerpc*-*-linux*): Don't handle it here.
---
gcc/config.gcc | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
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
;;
--
1.8.3.1