This is the mail archive of the gcc@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]

Re: gnu C compiler and Make utility



>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...


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]