From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail.killthe.net (mail.killthe.net [207.126.114.3]) by sourceware.org (Postfix) with ESMTP id 4B0353858425 for ; Sun, 3 Dec 2023 18:19:34 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.4.2 sourceware.org 4B0353858425 Authentication-Results: sourceware.org; dmarc=none (p=none dis=none) header.from=killthe.net Authentication-Results: sourceware.org; spf=none smtp.mailfrom=killthe.net ARC-Filter: OpenARC Filter v1.0.0 sourceware.org 4B0353858425 Authentication-Results: server2.sourceware.org; arc=none smtp.remote-ip=207.126.114.3 ARC-Seal: i=1; a=rsa-sha256; d=sourceware.org; s=key; t=1701627581; cv=none; b=dTSUfThBI77XJfoIplGOEdJkYNZDN5XK/LhL3rnGAk8ewGskBO1onpRV0vHuATBGUvExOW8Go59uLrXZEj1WQrb1/gOPhwdE/fbUAih6AYhv6AS1kvuDR+pkPIJVzVEflqRFHfkDgXdymTynfT/ekyUiz1yg5FCT/kfDtJoNKDE= ARC-Message-Signature: i=1; a=rsa-sha256; d=sourceware.org; s=key; t=1701627581; c=relaxed/simple; bh=n3Dg1OsGym2GtO6t3eAn6A1PEXsw08tQpCB5oAg8djs=; h=Date:From:To:Subject:Message-Id:Mime-Version; b=GcNxJoEuzuCl63YAzjjVj32nkRV7//d79aOq6zBKjv0isfnTKXfxNxHSV1G0hxgfwh0OxUimsHQLHvK0FbeW/FAEcQY6c2iTLF8G5P8BoTbVIQK6KKGEOWd/P8So5XOgH8neOqufpfOng1jUMLzHSeV0IXG4S+Hnql71TWrFpy4= ARC-Authentication-Results: i=1; server2.sourceware.org Received: from magic (unknown [166.199.184.97]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mail.killthe.net (Postfix) with ESMTPSA id 449B9120513 for ; Sun, 3 Dec 2023 13:19:32 -0500 (EST) Date: Sun, 3 Dec 2023 12:22:48 -0600 From: Dave Blanchard To: gcc@gcc.gnu.org Subject: GNAT on GCC 10.x has build problems Message-Id: <20231203122248.6f6d7c840a73f25f85ce1360@killthe.net> Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit X-Spam-Status: No, score=-1.0 required=5.0 tests=BAYES_00,KAM_DMARC_STATUS,KAM_LAZY_DOMAIN_SECURITY,SPF_HELO_NONE,SPF_NONE,TXREP,T_SCC_BODY_TEXT_LINE 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: Hello all, while bootstrapping GNAT onto my cross compiled system with GCC 10.x I found that the make script leaves something to be desired. First off it doesn't add the host prefix to the cross compiler binaries; it calls gnatmake, gnatlink, gnatbind, gnatls, and gcc without the x86_64-linux-gnu- prefix, requiring an ugly hack to symlink to those tools to complete the build. Also at the end of the build there is an error when it tries to install gnatdll, which isn't built, doesn't exist, and is for Windows only. Does anyone know if these problems are fixed in later GCC versions? And do these people even test their obviously broken crap before releasing it on the world? I also note that the AdaCore team seem to be doing everything in their power to railroad people into giving them money for their proprietary compiler. First they disabled C and C++ languages in their 2018-up Community Edition binaries, which makes bootstrapping a full GCC impossible with these tools. I guess that didn't do the trick as people just used older CE releases to bootstrap with instead, so they discontinued CE entirely and removed links to the CE download page from their site, making it hard to find unless one knows what to search for. I've also been told that there is some kind of special licensing clause for the GNAT project which requires all code built by their GPL compiler to be GPL3 licensed, which is a laugh as I'm never doing that. Not sure if that's actually true or not. Anyhow, it's surprising (or should be surprising) to see such shoddy workmanship from an anti-freedom commercial organization joined to the hip with GCC. Dave