I am working on a large C project for a company.
I have realized that some times in the compiled executable, static variables used in C files are not initialized to zero and have some value in them. But when I edit the code a bit, like adding a print statement any where in the project, the issue is resolved.
I am using a Broadcom STB mips cross-compiler toolchain for compiling the codes.
The program is run on a Broadcom 97241 chipset running Linux 3.1.3.
[EDIT] I tried a clean build also but the problem did not go away.
As already has been stated, the static variables are set to 0 by the compiler. If you see some different behaviour it is most likley your code corrupting it somewhere (i.e. array overrun or similar).
In order to track this problem you should set a breakpoint on
main
and verify that the variables are indeed 0. If not, it would be a compiler bug.If the variable is 0 then set a memory access breakpoint on it and you should see where you are corrupting it.
Without seeing the code it's really not helpfull to ask here, as any answer is just guessing, so we can only provide generic answers.