This is the mail archive of the
gcc-bugs@gcc.gnu.org
mailing list for the GCC project.
Re: Problems compiling current CVS under cygwin.
- From: Neil Booth <neil at daikokuya dot demon dot co dot uk>
- To: Andy Hare <ahare at btinternet dot com>
- Cc: gcc-bugs <gcc-bugs at gcc dot gnu dot org>
- Date: Wed, 28 Nov 2001 20:57:08 +0000
- Subject: Re: Problems compiling current CVS under cygwin.
- References: <03f701c1784b$69012e90$0100000a@dualbeast>
[Get raw message]
Andy Hare wrote:-
> shows that extern_C_braces is an array of 20 chars and
> extern-C-braces_length is 26. I have been stepping through the code for some
> time before this happens.
One good kludge deserves another. Does replacing
char extern_C_braces[20];
with
char extern_C_braces[100];
solve the problem? If so, I'll change it.
Neil.