I've read that ANSI C is not exactly the same as ISO C and compilers may differ in interpretation of what "-ansi" is about. (gcc maps it to C90, clang maps it to C89) At the moment I would tend to use "-std=..." over "-ansi" as then it is explicitly shown which standard is used. As I am specifically interested in compiling on Linux, Windows and MAC, I fear some compilers could not understand "-std=..." but "-ansi". So are there any pros and cons for using the one over the other?
|
|
If you want the compiler to enforce the 1989 ANSI C standard, or equivalently the 1990 ISO C standard (they describe exactly the same language), you can safely use either The name The new gcc 4.7 also recognizes
gcc 4.7 has partial support for the new ISO C 2011 standard, with There are more options, and a number of aliases for the ones I've mentioned; for example, the option I believe that clang is intended to be as compatible as possible with gcc, so it should support the same options with the same meanings (except perhaps for some of the newer ones, depending on which versions of gcc and clang you're using). The gcc manual has the full details, with one section describing the supported standards and another specifying the various If you're going to use compilers other than gcc (and compilers that aim to be gcc-compatible), you'll have to read their documentation to find out how to enforce various versions of the C standard. |
|||||||
|
|
As of now You should note that c89 and c90 are essentially the same C Standard. c89 is the ANSI name while c90 is the ISO name. From
1) As noted by Keith Thompson in the comments, even though it's probably unlikely as it would break many build scripts. |
|||||||||||
|