From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-qk1-x72d.google.com (mail-qk1-x72d.google.com [IPv6:2607:f8b0:4864:20::72d]) by sourceware.org (Postfix) with ESMTPS id B88F63858C60 for ; Mon, 13 Sep 2021 13:15:59 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.4.1 sourceware.org B88F63858C60 Received: by mail-qk1-x72d.google.com with SMTP id a66so10392776qkc.1 for ; Mon, 13 Sep 2021 06:15:59 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20210112; h=x-gm-message-state:subject:to:references:from:message-id:date :user-agent:mime-version:in-reply-to:content-transfer-encoding :content-language; bh=Ghqid4nt6ZbvIJ6DKltoxcRmL/yVoeY984fW9ltSIDE=; b=WcaIvlM+NiP1ti6Nhco+YhMgl8aj9NPdB9XkDRm55SE+S7BtoND847jgreStPKx5vd A36UaCuCTF4nJVw+bG2hzQwmdGR2n3pPG616TlzsPVBS+vwUIutXZm74HpIY97oe+HJY FNYKtK9vgqC49gVBIFChmECJApGQAtVkcr7uRDRed0LKOl+FmAjlfQelYiR5hZIgozZZ YSRztvGux6DdQIXP4pcmj/9EW9V50i5QZ9vaSmlE2IiqxfHHkXQ+4NbStxsKtHYXSvOy rXH6x26RVn+OFACFfJA5Zs4OB3PduZg2pwMwIAttk54IK5zr1WuUpx8CFiYSnxaDbFQ5 pbQA== X-Gm-Message-State: AOAM531RnnTF7xXuMYfyzgspariS6g5UKhcSfxNs4UgLMvRJd7vpEW/d nj8Pjwni9S1+g0LGB2XNIGYnXvka/BY= X-Google-Smtp-Source: ABdhPJzENLGBncaLmRzQDKiC2zbcadO0qAm6lJpd3z+s/rbMdnuuWRN99g6JhIjfk1mifzr2fEORkQ== X-Received: by 2002:a37:a017:: with SMTP id j23mr9955156qke.101.1631538959073; Mon, 13 Sep 2021 06:15:59 -0700 (PDT) Received: from [172.31.0.175] (c-98-202-48-222.hsd1.ut.comcast.net. [98.202.48.222]) by smtp.gmail.com with ESMTPSA id 21sm5226905qkk.51.2021.09.13.06.15.57 (version=TLS1_3 cipher=TLS_AES_128_GCM_SHA256 bits=128/128); Mon, 13 Sep 2021 06:15:58 -0700 (PDT) Subject: Re: [PATCH] Remove m32r{,le}-*-linux* support from GCC To: apinski@marvell.com, gcc-patches@gcc.gnu.org References: <1631517068-10348-1-git-send-email-apinski@marvell.com> From: Jeff Law Message-ID: Date: Mon, 13 Sep 2021 07:15:56 -0600 User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:78.0) Gecko/20100101 Thunderbird/78.14.0 MIME-Version: 1.0 In-Reply-To: <1631517068-10348-1-git-send-email-apinski@marvell.com> Content-Type: text/plain; charset=utf-8; format=flowed Content-Transfer-Encoding: 7bit Content-Language: en-US X-Spam-Status: No, score=-3.5 required=5.0 tests=BAYES_00, DKIM_SIGNED, DKIM_VALID, DKIM_VALID_AU, DKIM_VALID_EF, FREEMAIL_FROM, NICE_REPLY_A, RCVD_IN_DNSWL_NONE, 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, 13 Sep 2021 13:16:00 -0000 On 9/13/2021 1:11 AM, apinski--- via Gcc-patches wrote: > From: Andrew Pinski > > m32r support never made it to glibc and the support for the Linux kernel > was removed with 4.18. It does not remove much but no reason to keep > around a port which never worked or one which the support in other > projects is gone. > > OK? Checked to make sure m32r-linux and m32rle-linux were rejected > when building. > > contrib/ChangeLog: > > * config-list.mk: Remove m32r-linux and m32rle-linux > from the list. > > gcc/ChangeLog: > > * config.gcc: Add m32r-*-linux* and m32rle-*-linux* > to the Unsupported targets list. > Remove support for m32r-*-linux* and m32rle-*-linux*. > * config/m32r/linux.h: Removed. > * config/m32r/t-linux: Removed. > > libgcc/ChangeLog: > > * config.host: Remove m32r-*-linux* and m32rle-*-linux*. > * config/m32r/libgcc-glibc.ver: Removed. > * config/m32r/t-linux: Removed. OK. jeff