This is the mail archive of the
gcc@gcc.gnu.org
mailing list for the GCC project.
Re: issue with mingw and __attribute__? [relevant bits from g++ -E]
- From: Adam Megacz <gcc at lists dot megacz dot com>
- To: gcc at gcc dot gnu dot org
- Date: 04 Feb 2002 14:00:54 -0800
- Subject: Re: issue with mingw and __attribute__? [relevant bits from g++ -E]
- Organization: Myself
- References: <864rkwnc4y.fsf@megacz.com>
Adam Megacz <gcc@lists.megacz.com> writes:
> /usr/local/gcc/i686-pc-mingw32/include/winbase.h:1078: parse error before `
> __attribute__'
winbase.h:1078:
DECLSPEC_NORETURN void WINAPI ExitProcess(UINT);
This line expands (gcc -E) to:
__attribute__((noreturn)) void __attribute__((__stdcall__)) ExitProcess(UINT);
Trying to make figuring out the bug easier, since I lack the
understanding of gcc's internal workings needed to hunt it down
myself... Let me know if there's anything else I can provide.
- a