From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 17212 invoked by alias); 9 Oct 2003 14:26:35 -0000 Mailing-List: contact gcc-help-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Archive: List-Post: List-Help: Sender: gcc-help-owner@gcc.gnu.org Received: (qmail 17181 invoked from network); 9 Oct 2003 14:26:34 -0000 Received: from unknown (HELO ms-smtp-01.texas.rr.com) (24.93.36.229) by sources.redhat.com with SMTP; 9 Oct 2003 14:26:34 -0000 Received: from austin.rr.com (cs6668152-43.austin.rr.com [66.68.152.43]) by ms-smtp-01.texas.rr.com (8.12.10/8.12.2) with ESMTP id h99EQWNe014298; Thu, 9 Oct 2003 09:26:33 -0500 (CDT) Message-ID: <3F856FC9.9010707@austin.rr.com> Date: Thu, 09 Oct 2003 14:26:00 -0000 From: Andy Howell User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.4) Gecko/20030624 X-Accept-Language: en-us, en, ja MIME-Version: 1.0 To: gcc-help@gcc.gnu.org CC: Sheryl Canter Subject: Re: need help compiling gcc for Windows References: <006601c38cd5$0363f130$ad036c42@tpa21p> <007901c38d43$b5ed2a10$6401a8c0@tpa21p> <005701c38da1$1dd909c0$6401a8c0@tpa21p> <00d101c38db6$61120100$6401a8c0@tpa21p> <035301c38de1$4dce4e70$6401a8c0@tpa21p> <03c001c38dec$e95efaa0$6401a8c0@tpa21p> In-Reply-To: <03c001c38dec$e95efaa0$6401a8c0@tpa21p> X-Enigmail-Version: 0.76.5.0 X-Enigmail-Supports: pgp-inline, pgp-mime Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit X-SW-Source: 2003-10/txt/msg00151.txt.bz2 Sheryl Canter wrote: > If no ideas on the problem below, then at least help me to find it myself? > > I'm knew to Unix and can't tell exactly what is happening when I issue the > command "make bootstrap". If I knew what files were being executed, perhaps > I could find the problem. > > Someone please help?? > > - Sheryl > > > ----- Original Message ----- > From: "Sheryl Canter" > To: > Sent: Wednesday, October 08, 2003 5:15 PM > Subject: Re: need help compiling gcc for Windows > > > Please, somebody help me with this! I'm completely stuck. > > The configure is completing correctly (as far as I can tell), but the > build didn't work. It works up to this point: > > ------------ > Bootstrapping the compiler > make[1]: Entering directory `/c/gcc-objdir/gcc' > make AR_FOR_TARGET="ar" \ > RANLIB_FOR_TARGET="ranlib" \ > CC="gcc" libdir=/c/gcc-3.3.1/lib LANGUAGES="c " \ > CFLAGS="-g " MAKEINFO="makeinfo --no-split" \ > MAKEINFOFLAGS="" COVERAGE_FLAGS= > make[2]: Entering directory `/c/gcc-objdir/gcc' > ./gengtype > /c/gcc-srcdir/gcc-3.3.1/gcc/../include/ansidecl.h: No such file or directory > make[2]: *** [s-gtype] Error 1 > make[2]: Leaving directory `/c/gcc-objdir/gcc' > make[1]: *** [stage1_build] Error 2 > make[1]: Leaving directory `/c/gcc-objdir/gcc' > make: *** [bootstrap] Error 2 > ------------ > > That file spec with the error message looks a little strange, but it > correctly points to the file. ansidecl.h can be found here: > > /c/gcc-srcdir/gcc-3.3.1/include/ansidecl.h > > Any idea why the build didn't work? How do I correct this problem? > > - Sheryl > Its been a long time since I built gcc, and never have done it on windows... Is gengtype a shell script? If so, cd to /c/gcc-objdir/gcc and run: sh -x ./gengtype This may give some idea why it is not finding the file. If it is an binary executable, then if you have the "strace" command, you could do strace -o out ./gengtype Look in the file 'out' to see what it doing. You could grep: egrep 'open|stat' out Which will show you the files that gengtype is trying to open or find info on (stat). Hope this helps. Andy