I am trying to compile gpc20010623 with gcc 2.95.3 but the compiler complains about the following.
in gcc/tree.h:
extern int lang_decode_option PROTO((int, char **));
in gcc/p/lang.c:
#ifdef EGCS int lang_decode_option (argc, argv) int argc; char **argv; { return pascal_decode_option (argc, argv); } #else /* not EGCS */ int lang_decode_option (p) char *p; { return pascal_decode_option (p); } #endif /* not EGCS */
However, I am not using EGCS but gcc 2.95.3. Is comething configured incorrectly?
Theo Carr-Brion