Read and respond to this message at: 
https://sourceforge.net/forum/message.php?msg_id=3140281
By: nobody

small yacc script saved as test.y:
%%
S:E;
E:'('E')'|'i';
%%
prog[]="((i))";
int i=0;
main()
{
return yyparse();
}
int yylex(){
int c;
c=prog[i++];

while(c>='0' && c<='9'){
c=prog[i++];
}

if(c=='\0') return 0;
return c;
}
void yyerror (char const *s){
  printf ("%s\n", s);
}

bison test.y

error message here:
This application has requested the Runtime to terminate it in an unusual way.
Please contact the application's support team for more information.
D:/GnuWin32/bin/../share/bison/yacc.c:683: m4: ERROR: Copying inserted file

why????I have already installed m4 and libgw32

______________________________________________________________________
You are receiving this email because you elected to monitor this forum.
To stop monitoring this forum, login to SourceForge.net and visit: 
https://sourceforge.net/forum/unmonitor.php?forum_id=74807


-------------------------------------------------------
This SF.Net email is sponsored by: NEC IT Guy Games.
Get your fingers limbered up and give it your best shot. 4 great events, 4
opportunities to win big! Highest score wins.NEC IT Guy Games. Play to
win an NEC 61 plasma display. Visit http://www.necitguy.com/?r=20
_______________________________________________
GnuWin32-Users mailing list
GnuWin32-Users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/gnuwin32-users

Reply via email to