From mboxrd@z Thu Jan 1 00:00:00 1970 From: Peter Barada To: lstdenis@rtcnet.com Cc: egcs@cygnus.com Subject: Re: gnu C compiler and Make utility Date: Fri, 01 May 1998 08:41:00 -0000 Message-id: <199805011525.LAA09050@miacomet.wavemark.com> References: X-SW-Source: 1998-05/msg00007.html >Bootstrapping the compiler > make CC="cc -Wp,-H256000" libdir=/usr/local/lib LANGUAGES="c " > rm -f cpp > ln cccp cpp > cd ../../egcs_download/egcs-1.0.2/gcc; bison -d c-parse.y -o c-parse.c >sh: bison: not found. The basic problem is that you need bison(GNU yacc-compatible parser generator) to convert c-parse.y to c-parse.c You can get around it by touching c-parse.c since I know that you haven't changed the C parser...