From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 1498) id C66D43858D3C; Thu, 18 Apr 2024 20:06:50 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org C66D43858D3C DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gcc.gnu.org; s=default; t=1713470811; bh=BZ3JsfB0nn+LHppsqlIjHA78NvBEZTucLgj5ZPkOtZ0=; h=From:To:Subject:Date:From; b=R2rt25BGvA72a8nHnPprIlRvHscL0GYLjF9ZojddMMvcOUQLDlB14Wsc0TxiPM2Bt wgsA7C2abgwF/8SZkKjubbjA7ah8hEyJaBoyIjcTquD6Ud/kiyubYxJt6kXFxMOgBu jpDrhRHUUxbTex5QMlNLbgH/vWtWxVLqMM9lk0Ro= MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Content-Type: text/plain; charset="utf-8" From: Sandra Loosemore To: gcc-cvs@gcc.gnu.org Subject: [gcc r14-10031] Add nios2*-*-* to the list of obsolete targets X-Act-Checkin: gcc X-Git-Author: Sandra Loosemore X-Git-Refname: refs/heads/master X-Git-Oldrev: e243d0feafa533141ef7e23820d5cc60cf33204a X-Git-Newrev: e498ba92355881a91f271860f9de359d913e5a68 Message-Id: <20240418200651.C66D43858D3C@sourceware.org> Date: Thu, 18 Apr 2024 20:06:50 +0000 (GMT) List-Id: https://gcc.gnu.org/g:e498ba92355881a91f271860f9de359d913e5a68 commit r14-10031-ge498ba92355881a91f271860f9de359d913e5a68 Author: Sandra Loosemore Date: Mon Apr 8 14:36:08 2024 +0000 Add nios2*-*-* to the list of obsolete targets This patch marks the nios2*-*-* targets obsolete in GCC 14. Intel has EOL'ed this architecture and the maintainers no longer have access to hardware for testing. While the port is still in reasonably good shape at this time, no further testing or updates are planned. gcc/ * config.gcc: Add nios2*-*-* to the list of obsoleted targets. contrib/ * config-list.mk (LIST): --enable-obsolete for nios2*-*-*. Diff: --- contrib/config-list.mk | 3 ++- gcc/config.gcc | 1 + 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/contrib/config-list.mk b/contrib/config-list.mk index 16df66f0fc6..f282cd95c8d 100644 --- a/contrib/config-list.mk +++ b/contrib/config-list.mk @@ -78,7 +78,8 @@ LIST = \ moxie-uclinux moxie-rtems \ msp430-elf msp430-elfbare \ nds32le-elf nds32be-elf \ - nios2-elf nios2-linux-gnu nios2-rtems \ + nios2-elfOPT-enable-obsolete nios2-linux-gnuOPT-enable-obsolete \ + nios2-rtemsOPT-enable-obsolete \ nvptx-none \ or1k-elf or1k-linux-uclibc or1k-linux-musl or1k-rtems \ pdp11-aout \ diff --git a/gcc/config.gcc b/gcc/config.gcc index 5df3c52f8e9..029ad1f1f08 100644 --- a/gcc/config.gcc +++ b/gcc/config.gcc @@ -274,6 +274,7 @@ esac case ${target}${target_min} in *-*-solaris2.11.[0-3]* \ | ia64*-*-* \ + | nios2*-*-* \ ) if test "x$enable_obsolete" != xyes; then echo "*** Configuration ${target}${target_min} is obsolete." >&2