From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from smtp-out1.suse.de (smtp-out1.suse.de [195.135.220.28]) by sourceware.org (Postfix) with ESMTPS id CFD383858424 for ; Mon, 20 Sep 2021 07:01:00 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.4.1 sourceware.org CFD383858424 Received: from imap2.suse-dmz.suse.de (imap2.suse-dmz.suse.de [192.168.254.74]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature ECDSA (P-521) server-digest SHA512) (No client certificate requested) by smtp-out1.suse.de (Postfix) with ESMTPS id A43EB21F92; Mon, 20 Sep 2021 07:00:59 +0000 (UTC) Received: from imap2.suse-dmz.suse.de (imap2.suse-dmz.suse.de [192.168.254.74]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature ECDSA (P-521) server-digest SHA512) (No client certificate requested) by imap2.suse-dmz.suse.de (Postfix) with ESMTPS id 801B113ACA; Mon, 20 Sep 2021 07:00:59 +0000 (UTC) Received: from dovecot-director2.suse.de ([192.168.254.65]) by imap2.suse-dmz.suse.de with ESMTPSA id jhrvHasxSGGxbgAAMHmgww (envelope-from ); Mon, 20 Sep 2021 07:00:59 +0000 Date: Mon, 20 Sep 2021 09:00:59 +0200 (CEST) From: Richard Biener To: gcc-patches@gcc.gnu.org cc: dave.anglin@bell.net, jeffreyalaw@gmail.com Subject: [PATCH] Obsolete hppa[12]*-*-hpux10* and hppa[12]*-*-hpux11* Message-ID: MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII X-Spam-Status: No, score=-11.7 required=5.0 tests=BAYES_00, DKIM_SIGNED, DKIM_VALID, DKIM_VALID_AU, DKIM_VALID_EF, GIT_PATCH_0, SPF_HELO_NONE, SPF_PASS, TXREP autolearn=ham autolearn_force=no version=3.4.4 X-Spam-Checker-Version: SpamAssassin 3.4.4 (2020-01-24) on server2.sourceware.org X-BeenThere: gcc-patches@gcc.gnu.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Gcc-patches mailing list List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 20 Sep 2021 07:01:02 -0000 This obsoletes the 32bit hppa-hpux configurations which only support STABS as debuginfo format. As discussed, I'm going to push this (and a changes.html entry) when it was included in a bootstrap/regtest cycle. 2021-09-20 Richard Biener gcc/ * config.gcc: Obsolete hppa[12]*-*-hpux10* and hppa[12]*-*-hpux11*. contrib/ * config-list.mk: --enable-obsolete for hppa2.0-hpux10.1 and hppa2.0-hpux11.9. --- contrib/config-list.mk | 5 +++-- gcc/config.gcc | 2 ++ 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/contrib/config-list.mk b/contrib/config-list.mk index 28c0db7a26c..3e1d1321861 100644 --- a/contrib/config-list.mk +++ b/contrib/config-list.mk @@ -45,8 +45,9 @@ LIST = aarch64-elf aarch64-linux-gnu aarch64-rtems \ epiphany-elf epiphany-elfOPT-with-stack-offset=16 fido-elf \ fr30-elf frv-elf frv-linux ft32-elf h8300-elf hppa-linux-gnu \ hppa-linux-gnuOPT-enable-sjlj-exceptions=yes hppa64-linux-gnu \ - hppa2.0-hpux10.1 hppa64-hpux11.3 \ - hppa64-hpux11.0OPT-enable-sjlj-exceptions=yes hppa2.0-hpux11.9 \ + hppa2.0-hpux10.1OPT-enable-obsolete hppa64-hpux11.3 \ + hppa64-hpux11.0OPT-enable-sjlj-exceptions=yes \ + hppa2.0-hpux11.9OPT-enable-obsolete \ i686-pc-linux-gnu i686-apple-darwin i686-apple-darwin9 i686-apple-darwin10 \ i486-freebsd4 i686-freebsd6 i686-kfreebsd-gnu \ i686-netbsdelf9 \ diff --git a/gcc/config.gcc b/gcc/config.gcc index c3a8b27f819..498c51e619d 100644 --- a/gcc/config.gcc +++ b/gcc/config.gcc @@ -250,6 +250,8 @@ md_file= case ${target} in tile*-*-* \ | cr16-*-* \ + | hppa[12]*-*-hpux10* \ + | hppa[12]*-*-hpux11* \ ) if test "x$enable_obsolete" != xyes; then echo "*** Configuration ${target} is obsolete." >&2 -- 2.31.1