From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 21894 invoked by alias); 2 Oct 2002 02:40:20 -0000 Mailing-List: contact gdb-help@sources.redhat.com; run by ezmlm Precedence: bulk List-Subscribe: List-Archive: List-Post: List-Help: , Sender: gdb-owner@sources.redhat.com Received: (qmail 21877 invoked from network); 2 Oct 2002 02:40:18 -0000 Received: from unknown (HELO touchme.toronto.redhat.com) (216.138.202.10) by sources.redhat.com with SMTP; 2 Oct 2002 02:40:18 -0000 Received: from localhost.redhat.com (to-dhcp51.toronto.redhat.com [172.16.14.151]) by touchme.toronto.redhat.com (Postfix) with ESMTP id 13A128000F4; Tue, 1 Oct 2002 22:40:18 -0400 (EDT) Received: from redhat.com (localhost [127.0.0.1]) by localhost.redhat.com (Postfix) with ESMTP id 1E33B3ED5; Tue, 1 Oct 2002 22:40:20 -0400 (EDT) Message-ID: <3D9A5C93.7020900@redhat.com> Date: Tue, 01 Oct 2002 19:40:00 -0000 From: Andrew Cagney User-Agent: Mozilla/5.0 (X11; U; NetBSD macppc; en-US; rv:1.0.0) Gecko/20020824 X-Accept-Language: en-us, en MIME-Version: 1.0 To: Nathanael Nerode Cc: gdb@sources.redhat.com, binutils@sources.redhat.com Subject: Re: top level makefile.in References: <20021001104833.E25369@bubble.sa.bigpond.net.au> <20021001012213.GA16275@nevyn.them.org> <20021001114136.F25369@bubble.sa.bigpond.net.au> <3D99C4A0.30205@redhat.com> <20021001224634.GA17565@doctormoo.dyndns.org> <3D9A2C12.7080906@redhat.com> <20021001231948.GA17874@doctormoo.dyndns.org> Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit X-SW-Source: 2002-10/txt/msg00020.txt.bz2 > On Tue, Oct 01, 2002 at 07:13:22PM -0400, Andrew Cagney wrote: > >> > >> >Makefile.tpl, Makefile.def, and src-release should be included. Eek. > >> >> Ok. Just adding them now... >> > >> >You need to revert the change to 'configure' corresponding to my reverted >> >change to Makefile.tpl/Makefile.in, until everyone's using src-release >> >and my changes can be put back in full; the partial reversion is the >> >cause of the build breakage. > > I finished the reversion, so the build shouldn't be breaking. > > >> >> Binutils are ok with this stuff (see other post). >> >> Would you be able to commit the src-release file sometime in the next, >> er, 40 minutes? That way GDB's snap will pick it up and start using it. > > It's committed. > > >> >> (Assuming that I get it added to GDB's modules file, also in the next 40 >> minutes :-) > > Over to you. :-) Well the snap is using src-release: ==> Making gdb+dejagnu-20021002/ ./configure: -e: command not found Created "Makefile" in /sourceware/snapshot-tmp/gdb-snapshot/current-gdb+dejagnu/ make-snapshot/src Configuring intl... creating cache ../config.cache checking for a BSD compatible install... /usr/bin/install -c checking how to run the C preprocessor... gcc -E checking whether make sets ${MAKE}... yes checking for gcc... gcc checking whether the C compiler (gcc -g -O2 ) works... yes checking whether the C compiler (gcc -g -O2 ) is a cross-compiler... no checking whether we are using GNU C... yes checking whether gcc accepts -g... yes checking for ranlib... ranlib checking for POSIXized ISC... no checking for ANSI C header files... yes checking for working const... yes checking for inline... inline checking for off_t... yes but then eventually barfs: checking for working makeinfo... found checking for gcc... (cached) gcc checking whether the C compiler (gcc -g -O2 ) works... yes checking whether the C compiler (gcc -g -O2 ) is a cross-compiler... no checking whether we are using GNU C... (cached) yes checking whether gcc accepts -g... (cached) yes checking for a BSD compatible install... /usr/bin/install -c checking how to run the C preprocessor... (cached) gcc -E checking for stdlib.h... (cached) yes checking for strcmp... yes checking whether to enable maintainer-specific portions of Makefiles... no updating cache ../../../config.cache creating ./config.status creating Makefile creating calc.h Configuring utils... loading cache ../config.cache checking for a BSD compatible install... (cached) /usr/bin/install -c checking host system type... sparc-sun-sunos4.1.1 checking target system type... sparc-sun-sunos4.1.1 checking build system type... sparc-sun-sunos4.1.1 creating ./config.status creating Makefile make[3]: *** No rule to make target `configure-target'. Stop. make[2]: *** [do-proto-toplev] Error 2 make[1]: *** [gdb-tar] Error 2 make: *** [gdb+dejagnu.tar] Error 2 I think this needs a tweak: ./configure sun4 $(MAKE) configure-target \ ALL_GCC="" ALL_GCC_C="" ALL_GCC_CXX="" \ CC_FOR_TARGET="$(CC)" CXX_FOR_TARGET="$(CXX)" # Make links, and run "make diststuff" or "make info" when needed. rm -rf proto-toplev ; mkdir proto-toplev set -e ; dirs="$(TOOL) $(DEVO_SUPPORT) $(SUPPORT_FILES)" ; \ It looks like the configure-target rule was lost from Makefile.in/Makefile? Anyway, I think the other Makefile.in changes can be pushed out (so people stop reporting broken `make install') and then I guess this is next. Andrew