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 7F5793858D20 for ; Fri, 27 Jan 2023 21:15:12 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.4.2 sourceware.org 7F5793858D20 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 30RLEBdv001753; Fri, 27 Jan 2023 15:14:11 -0600 Received: (from segher@localhost) by gate.crashing.org (8.14.1/8.14.1/Submit) id 30RLEBE5001752; Fri, 27 Jan 2023 15:14:11 -0600 X-Authentication-Warning: gate.crashing.org: segher set sender to segher@kernel.crashing.org using -f Date: Fri, 27 Jan 2023 15:14:11 -0600 From: Segher Boessenkool To: Mark Butt Cc: Jeff Law , Jonathan Wakely , gcc-help Subject: Re: Building and install GCC 8.3.0, OpenBSD 7.2 on DEC Alpha EV5 Message-ID: <20230127211411.GU25951@gate.crashing.org> References: <1069636641.353816.1674409053357.JavaMail.zimbra@markwbutt.com> <0a2e72ff-e0ce-f413-aeeb-1bdb1cfbd512@gmail.com> <20230127175845.GQ25951@gate.crashing.org> <1181772750.416994.1674847272046.JavaMail.zimbra@markwbutt.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <1181772750.416994.1674847272046.JavaMail.zimbra@markwbutt.com> User-Agent: Mutt/1.4.2.3i X-Spam-Status: No, score=-2.7 required=5.0 tests=BAYES_00,JMQ_SPF_NEUTRAL,KAM_DMARC_STATUS,KAM_NUMSUBJECT,SPF_HELO_PASS,SPF_PASS,TXREP autolearn=no autolearn_force=no version=3.4.6 X-Spam-Checker-Version: SpamAssassin 3.4.6 (2021-04-09) on server2.sourceware.org List-Id: On Fri, Jan 27, 2023 at 03:51:12PM -0330, Mark Butt wrote: > I tried 12.2 a few days ago but I am getting errors that I think are about the compiler that comes with OpenBSD being too old to build 12.2. A C++11 compiler is required: ISO C++11 compiler Necessary to bootstrap GCC. GCC 4.8.3 or newer has sufficient support for used C++11 features, with earlier GCC versions you might run into implementation bugs. > I did notice that the configure script is detecting the host as: alpha-unknown-openbsd7.2 > Does anyone know if that looks right or if I should be manually specifying the host type? That isn't the host. The target triple is cpu-vendor-os. "unknown" is pretty normal here, and doesn't usually make a difference. If you do use something here you will have to use the same thing for all tools, so it is easier to just use the detected thing usually. Segher