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
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
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
Did you use the latest version (i.e. 1.875-4) of bison from
http://sourceforge.net/project/showfiles.php?group_id=23617&package_id=22822