I am in the midst of researching possible pitfalls of migrating from Sun C 5.9 to gcc (GCC) 3.4.6 on a Solaris 10 box for consistency with our other programs. Is there any guide or list of possible pitfalls available which we should look out for?
We have already narrowed down an issue with code of the following sort (known by us to be bad practice, but long existing):
char* stringLiteralPointer = "someStringLiteralValue";
strcpy(stringLiteralPointer , "anonStringLiteralValue"); //Crash here only with gcc
This error can be detected by using -Wwrite-strings and checking all the errors. Are there any other such warnings we should be aware of that could point out more such possible run-time errors from the differences in the gcc c compiler and the Sun C compiler?
is not valid in C. I got this error without any flag (warning):
In GCC, to detect more warnings you can compile your code in C99 mode (-std=C99) with
-Wall
and-Wextra
flags.