From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 24067 invoked by alias); 5 Nov 2003 16:51:27 -0000 Mailing-List: contact gcc-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Archive: List-Post: List-Help: Sender: gcc-owner@gcc.gnu.org Received: (qmail 24030 invoked from network); 5 Nov 2003 16:51:26 -0000 Received: from unknown (HELO mailout.TechFak.Uni-Bielefeld.DE) (129.70.136.245) by sources.redhat.com with SMTP; 5 Nov 2003 16:51:26 -0000 Received: from xayide.TechFak.Uni-Bielefeld.DE.TechFak.Uni-Bielefeld.DE (xayide.TechFak.Uni-Bielefeld.DE [129.70.137.35]) by momotombo.TechFak.Uni-Bielefeld.DE (8.11.7p1+Sun/8.11.6/TechFak/2003/04/16/pk) with ESMTP id hA5GpPB26057; Wed, 5 Nov 2003 17:51:25 +0100 (MET) To: Christian Joensson Cc: gcc Subject: Re: Building the Ada compiler... is http://gcc.gnu.org/install/build.html correct? References: <20031105165315.A29594@fw.j-son.org> Mime-Version: 1.0 (generated by tm-edit 7.106) Content-Type: text/plain; charset=US-ASCII From: Rainer Orth Date: Wed, 05 Nov 2003 18:06:00 -0000 In-Reply-To: Christian Joensson's message of "Wed, 5 Nov 2003 16:53:15 +0100" Message-ID: X-SW-Source: 2003-11/txt/msg00222.txt.bz2 Christian Joensson writes: > Just a ping here... is the information concerning building the Ada > compiler in http://gcc.gnu.org/install/build.html correct? > > More specifically, is [...] > cd srcdir/gcc/ada > touch treeprs.ads [es]info.h nmake.ad[bs] This part should be unnecessary. gcc_update takes care of this when building from CVS. Besides, there are other errors: * It isn't necessary to specify --enable-languages: if you have an Ada-capable gcc as a bootstrap compiler, the ada backend will be built automatically. * Nowadays gnatmake *is* required since it is used to build xgnatug. * While make gnatlib_and_tools doesn't work in parallel, parallel bootstrap itself works fine. As I've indicated before, the current support for building with different Ada and C compilers should be removed in favor of requiring a gcc that includes GNAT if Ada support is desired. Rainer