From mboxrd@z Thu Jan 1 00:00:00 1970 From: Mumit Khan To: paul.andrews@smartmove.co.nz Cc: insight@sourceware.cygnus.com Subject: Re: Trouble building Insight-19991116 cygwin->m68k Date: Thu, 02 Dec 1999 00:38:00 -0000 Message-id: References: <19991129032243.92435.qmail@hotmail.com> X-SW-Source: 1999-q4/msg00068.html On Mon, 29 Nov 1999, paul andrews wrote: > Everything goes according to plan, until: > > make[1]: Entering directory `/build/insight/gdb' > /bin/sh /source/insight-19991116/gdb/../ylwrap "bison -y" > /source/insight-199911 > 16/gdb/c-exp.y y.tab.c c-exp.tmp -- > bison: /cygnus/cygwin-b20/share/bison.simple: No such file or directory Wonder why the timestamps are messed up? Unless you've changed the grammar file, make shouldn't be trying to run bison at all. You seem to have a non-standard installation (no /cygnus), and bison looks in /cygnus/cygwin-b20/share/ for bison.hairy and bison.simple and find those files. The trivial fix is to define: $ export BISON_SIMPLE=/cygwin-b20/share/bison.simple $ export BISON_HAIRY=/cygwin-b20/share/bison.hairy Please make sure $BISON_SIMPLE exists (and if not, fix the path!). Now, re-run make. Regards, Mumit