From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 25403 invoked by alias); 13 Aug 2008 09:29:39 -0000 Received: (qmail 21393 invoked by uid 48); 13 Aug 2008 09:28:23 -0000 Date: Wed, 13 Aug 2008 09:29:00 -0000 Message-ID: <20080813092823.21392.qmail@sourceware.org> X-Bugzilla-Reason: CC References: Subject: [Bug ada/37109] can't canadian cross ada (if host=target, but host!=build) In-Reply-To: Reply-To: gcc-bugzilla@gcc.gnu.org To: gcc-bugs@gcc.gnu.org From: "charlet at gcc dot gnu dot org" Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org X-SW-Source: 2008-08/txt/msg00986.txt.bz2 ------- Comment #1 from charlet at gcc dot gnu dot org 2008-08-13 09:28 ------- This was broken by the following change AFAICT (rev 121082): << 2007-01-23 Richard Guenther PR bootstrap/30541 * Makefile.def (flags_to_pass): Add GNATBIND and GNATMAKE. * Makefile.tpl (GNATBIND): Substitute it. (GNATMAKE): Likewise. (POSTSTAGE1_FLAGS_TO_PASS): Pass staged GNATBIND instead of STAGE_PREFIX. * Makefile.in: Regenerate. * configure: Regenerate. config/ * acx.m4 (ACX_PROG_GNAT): Check for gnatmake. libada/ * Makefile.in (STAGE_PREFIX): Do not define. (FLAGS_TO_PASS): Do not pass STAGE_PREFIX. gnattools/ * Makefile.in (STAGE_PREFIX): Do not define. ada/ * Make-lang.in: Replace invocations of gnatmake with $(GNATMAKE). (gnatboot2): Pass staged GNATMAKE instead of STAGE_PREFIX. (gnatboot3): Likewise. (GNATBIND): Do not define. * Makefile.in (GNATBIND): Do not define. >> Before that, we were using 'gnatmake' instead of '$(GNATMAKE)', which is what's causing troubles here. Arno -- http://gcc.gnu.org/bugzilla/show_bug.cgi?id=37109