I'm working on a Linux machine. Is there any system command to find the standard followed by the C compiler I'm using?

link|improve this question

79% accept rate
feedback

5 Answers

You can also test this in your code using standard macros, for example (from that link):

#if defined(__STDC__)
# define PREDEF_STANDARD_C_1989
# if defined(__STDC_VERSION__)
#  define PREDEF_STANDARD_C_1990
#  if (__STDC_VERSION__ >= 199409L)
#   define PREDEF_STANDARD_C_1994
#  endif
#  if (__STDC_VERSION__ >= 199901L)
#   define PREDEF_STANDARD_C_1999
#  endif
# endif
#endif

If you want to check this from the command line you can pick one (e.g. c89) and check the return value from a minimal program:

echo -e "#ifdef __STDC__\n#error\n#endif"|gcc -xc -c - > /dev/null 2>&1; test $? -eq 0  || echo "c89
link|improve this answer
feedback

At compile time, check against preprocessor macro:

  • __ANSI__
  • __STDC__
  • __STDC_VERSION__ >= 199901L for c99
link|improve this answer
feedback

This is compiler dependent, I'm supposing you're using GCC. You could check your compiler defined macros using:

gcc -dM -E - < /dev/null

Check the manual about the flags, specially:

__STDC_VERSION__

This macro expands to the C Standard's version number, a long integer constant of the form yyyymmL where yyyy and mm are the year and month of the Standard version. This signifies which version of the C Standard the compiler conforms to. Like STDC, this is not necessarily accurate for the entire implementation, unless GNU CPP is being used with GCC.

The value 199409L signifies the 1989 C standard as amended in 1994, which is the current default; the value 199901L signifies the 1999 revision of the C standard. Support for the 1999 revision is not yet complete.

This macro is not defined if the -traditional-cpp option is used, nor when compiling C++ or Objective-C.

In this site you can find a lot of information about this. See the table present here.

link|improve this answer
feedback

You probably have gcc, in which case you can specify the standard at compile-time, e.g.

$ gcc -Wall -std=c89 foo.c -o foo

or:

$ gcc -Wall -std=c99 foo.c -o foo

Type:

$ man gcc

for full details.

link|improve this answer
1  
Why the (anonymous) down-vote ??? If there's anything inaccurate or misleading in the above answer then please feel free to point it out so that I can either fix it or delete the answer as appropriate. – Paul R Feb 14 '11 at 11:53
It wasn't me who downvoted, but his question was: "is there any system command to find the standard followed by the C compiler I'm using?" which as you can see, he wants to know what is the standard used by the compiler and now how to define this standard. – Tarantula Feb 14 '11 at 17:08
Typo: "... and NOT how to define ..." – Tarantula Feb 14 '11 at 17:16
@Tarantula: thanks, yes, you may have a point. I assumed the OP was not aware that you had control over the standard used, hence my answer, but perhaps that was a bad assumption. – Paul R Feb 14 '11 at 17:29
feedback

If your C compiler is gcc, you can use the -std option to specify which C standard to follow. The default is gnu89. There's no general system command to determine the standard for any given compiler. You'll need to check the documentation.

link|improve this answer
You can check, by writing a small program using standard macros. – awoodland Feb 14 '11 at 11:48
Nice, yes. I just wrote a small test, but __STDC_VERSION__ is undefined for the gcc default standard (gnu89). – ciaron Feb 14 '11 at 12:38
feedback

Your Answer

 
or
required, but never shown

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