From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from gate.crashing.org (gate.crashing.org [63.228.1.57]) by sourceware.org (Postfix) with ESMTP id 02C633858D35 for ; Sat, 16 Oct 2021 23:59:59 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.4.1 sourceware.org 02C633858D35 Authentication-Results: sourceware.org; dmarc=none (p=none dis=none) header.from=kernel.crashing.org Authentication-Results: sourceware.org; spf=pass smtp.mailfrom=kernel.crashing.org Received: from gate.crashing.org (localhost.localdomain [127.0.0.1]) by gate.crashing.org (8.14.1/8.14.1) with ESMTP id 19GNvjk4004238; Sat, 16 Oct 2021 18:57:45 -0500 Received: (from segher@localhost) by gate.crashing.org (8.14.1/8.14.1/Submit) id 19GNvdpk004225; Sat, 16 Oct 2021 18:57:39 -0500 X-Authentication-Warning: gate.crashing.org: segher set sender to segher@kernel.crashing.org using -f Date: Sat, 16 Oct 2021 18:57:39 -0500 From: Segher Boessenkool To: Piotr Kubaj Cc: dje.gcc@gmail.co, gcc-patches@gcc.gnu.org Subject: Re: [PATCH] gcc/configure: check for powerpc64le-unknown-freebsd Message-ID: <20211016235739.GM614@gate.crashing.org> References: <20211016020905.3353-1-pkubaj@FreeBSD.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20211016020905.3353-1-pkubaj@FreeBSD.org> User-Agent: Mutt/1.4.2.3i X-Spam-Status: No, score=-3.4 required=5.0 tests=BAYES_00, JMQ_SPF_NEUTRAL, KAM_DMARC_STATUS, SPF_HELO_PASS, SPF_PASS, TXREP autolearn=no 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: Sun, 17 Oct 2021 00:00:02 -0000 On Sat, Oct 16, 2021 at 04:09:05AM +0200, Piotr Kubaj wrote: > Only powerpc64-unknown-freebsd was checked for. > > Signed-off-by: Piotr Kubaj Thanks! I pushed this now, with commit message (including changelog, which is required): === gcc/configure: Check for powerpc64le*-*-freebsd* Only powerpc64-unknown-freebsd was checked for. Signed-off-by: Piotr Kubaj gcc/ * configure.ac: Treat powerpc64*-*-freebsd* the same as powerpc64-*-freebsd*. * configure: Regenerate. === Segher