From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 1643) id 89BDC3858D3C; Wed, 22 Feb 2023 08:11:13 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org 89BDC3858D3C DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gcc.gnu.org; s=default; t=1677053473; bh=wKffzSDpzgE5DjtN/0TsU8cXagE9O21U2ZYZhCGCsls=; h=From:To:Subject:Date:From; b=PITny/35tvpHb9C8eNaf5LIFYQBUimILY5sHibubQbprFcb/IMYAXtbFRX7VMAVg/ lOvRh2X7ug5b6Yzxzcxv3wkgp09ssfclupO6eT/SGfr2m5vd6J+KpYuJX+j9M4jAh/ veDNpU9irCy3Kt+IZ+GRhjI1uPeMlSvo36Zm/4EM= MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Content-Type: text/plain; charset="utf-8" From: Thomas Schwinge To: gcc-cvs@gcc.gnu.org Subject: [gcc r13-6269] In 'contrib/config-list.mk', clarify i686-symbolics-gnu to i686-gnu X-Act-Checkin: gcc X-Git-Author: Thomas Schwinge X-Git-Refname: refs/heads/master X-Git-Oldrev: c3bf22d918021d97ee929d7f0bf18693b08a24e1 X-Git-Newrev: 10f085135bc98afa57309fcd679698a0122925bf Message-Id: <20230222081113.89BDC3858D3C@sourceware.org> Date: Wed, 22 Feb 2023 08:11:13 +0000 (GMT) List-Id: https://gcc.gnu.org/g:10f085135bc98afa57309fcd679698a0122925bf commit r13-6269-g10f085135bc98afa57309fcd679698a0122925bf Author: Thomas Schwinge Date: Fri Feb 10 10:43:24 2023 +0100 In 'contrib/config-list.mk', clarify i686-symbolics-gnu to i686-gnu Already in the first revision of 'contrib/config-list.mk', i686-symbolics-gnu has been present, but it's not clear to me whether that was meant to be Symbolics as in the manufacturer, , with GNU (that is, GNU/Hurd) kernel/operating system (user land), or Symbolics kernel with GNU operating system (user land)? I can't find any mention of "Symbolics" in the history of 'config.sub' upstream. Either way, GCC configures i686-symbolics-gnu exactly the same as i686-gnu: $ sed -n -e '/Using .* host machine hooks\.$/q' -e '/^Using the following target machine macro files:$/,$p' log/i686-gnu-make.out Using the following target machine macro files: [...]/gcc/config/vxworks-dummy.h [...]/gcc/config/i386/i386.h [...]/gcc/config/i386/unix.h [...]/gcc/config/i386/att.h [...]/gcc/config/elfos.h [...]/gcc/config/gnu-user.h [...]/gcc/config/glibc-stdint.h [...]/gcc/config/i386/gnu-user-common.h [...]/gcc/config/i386/gnu-user.h [...]/gcc/config/gnu.h [...]/gcc/config/i386/gnu.h [...]/gcc/config/initfini-array.h ..., so let's clarify i686-symbolics-gnu to i686-gnu. contrib/ * config-list.mk (LIST): Clarify i686-symbolics-gnu to i686-gnu. Diff: --- contrib/config-list.mk | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/contrib/config-list.mk b/contrib/config-list.mk index 661b11c9bbd..e570b13c71b 100644 --- a/contrib/config-list.mk +++ b/contrib/config-list.mk @@ -50,7 +50,7 @@ LIST = aarch64-elf aarch64-freebsd13 aarch64-linux-gnu aarch64-rtems \ i686-pc-linux-gnu i686-apple-darwin i686-apple-darwin9 i686-apple-darwin10 \ i686-freebsd13 i686-kfreebsd-gnu \ i686-netbsdelf9 \ - i686-openbsd i686-elf i686-kopensolaris-gnu i686-symbolics-gnu \ + i686-openbsd i686-elf i686-kopensolaris-gnu i686-gnu \ i686-pc-msdosdjgpp i686-lynxos i686-nto-qnx \ i686-rtems i686-solaris2.11 i686-wrs-vxworks \ i686-wrs-vxworksae \