In GCC, certain warnings require optimization to be enabled. For example:
int foo() {
int x;
return x;
}
In order to detect the uninitialized variable, -O must be passed.
$ gcc -W -Wall -c test.c
$ gcc -W -Wall -c test.c -O
test.c: In function ‘foo’:
test.c:3: warning: ‘x’ is used uninitialized in this function
However, this can interfere with debugging. Is there a way to enable just the analysis phases needed for warnings (and not just this particular warning, but as many as possible), without affecting the generated code too much?
I’m using GCC version 4.3.3 (Ubuntu 4.3.3-5ubuntu4) on x86-64.
Try using
-Wallinstead of-W.-Wis deprecated IIRC. (As Jonathan Leffler points out in a comment,-W‘s replacement is-Wextra, not-Wall.)3.8 Options to Request or Suppress Warnings
This behavior has changed in GCC 4.4: