vote up 2 vote down star

I was reading about the flags used in gcc, and read a reccommendation to use gcc -ansi -pedantic -Wall file1 [file2 [file3...]] -o output. For the quality of my code's sake, to keep it standard, and get all the warnings about it.

Well, about compiling with -ansi... If I include <stdlib.h>, gcc gives me this error:

In file included from ansi.c:2: C:/c/bin/../lib/gcc/mingw32/3.4.5/../../../../include/stdlib.h:317: error: syntax error before "double"

That line in is this:

inline double __cdecl __MINGW_NOTHROW strtod (const char* __restrict__ __nptr, char** __restrict__ __endptr)
{ return __strtod(__nptr, __endptr); }

does inline not exist in C? Shouldn't a "standard" header be standard ansi? Should I just remove the inline or avoid compiling with stdlib.h (I can't really remember what's in stdlib right now)?

Update

from reading the link which Adam posted I found out that "inline" isn't a keyword in C89, and C89 is what is enforced with the -ansi switch. I had to change it to __inline__ which is, I suppose, a MinGW macro.

Thanks for the help.

flag

That is strange that a standard header would cause an error... – Zifre May 17 at 18:27
I thought the latest MinGW version was 4.4.0? And you actually seem to be using 3.4.5. – Neil Butterworth May 17 at 18:32
shrug I just got it from the installation package, "MinGW 5.1.4.exe" – Carson Myers May 17 at 18:39
3.4.5 ----15 characters----------- – Carson Myers May 17 at 18:44

3 Answers

vote up 2 vote down check

It seems a known issue in mingw: link to archive mingw mailing list

It tells that inline is not part of the c89 standard (as -ansi force it) and it should be replaced with __inline__ instead

If you read next e-mails, someone tells he has fix this bug directly in the cvs. Check out the new code and have a look (?) then tell us. :-)

link|flag
vote up 1 vote down

inline is not part of what gcc 3.4.5 considers to be ANSI C - it is part of C99, I think Can you confirm which version of gcc you are using?

link|flag
Well, I got 5.1.4 from the installation package which said 5.1.4 throughout it. But I opened some random .ini and found 3.4.5 so you're right, I guess, it's 3.4.5. – Carson Myers May 17 at 18:42
vote up 1 vote down

I've run into this problem before when compiling to a specific standard. On a Linux system I was compiling to, the pthread rwlock headers weren't c99 compliant (or weren't ifndef'd in). You have to be careful in these cases, and checking the output of the preprocessor can sometimes help in these cases.

link|flag
I'll definitely start gcc -E input.c when I run into problems more often. – Carson Myers May 17 at 19:24

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.