我有一个示例有缺陷的程序,它应该只给出一个关于未初始化变量的警告,但是当我编译它时,gcc不会给我任何警告。
以下是代码:
#include <stdio.h>
int main()
{
int foo;
printf("I am a number: %d \n", foo);
return 0;
}
以下是我的说法:cc -Wall testcase.c -o testcase
我得不到反馈。据我所知,这应该产生:
testcase.c: In function 'main':
testcase.c:7: warning: 'foo' is used uninitialized in this function
似乎在他的C教程的similar example中正确地警告了Zed Shaw。这是我第一次尝试的例子,发现它没有按预期工作。
有什么想法吗?
编辑:
gcc版本:
i686-apple-darwin11-llvm-gcc-4.2 (GCC) 4.2.1 (Based on Apple Inc. build 5658) (LLVM build 2336.1.00)
答案 0 :(得分:7)
您是否在开启优化的情况下进行编译?这是我的man gcc
页面所说的内容:
-Wuninitialized Warn if an automatic variable is used without first being initialized or if a variable may be clobbered by a "setjmp" call. These warnings are possible only in optimizing compilation, because they require data flow information that is computed only when optimizing. If you do not specify -O, you will not get these warnings. Instead, GCC will issue a warning about -Wuninitialized requiring -O.
我的gcc版本是:
i686-apple-darwin11-llvm-gcc-4.2 (GCC) 4.2.1 (Based on Apple Inc. build 5658) (LLVM build 2336.1.00)
实际上,我只是在gcc 4.4.5上试过这个,而我做在不使用-O
的情况下收到警告。所以这取决于你的编译器版本。
答案 1 :(得分:2)
更新您的编译器。
$ cat test.c
#include <stdio.h>
int main(void)
{
int foo;
printf("I am a number: %d \n", foo);
return 0;
}
$ gcc -Wall -o test ./test.c
./test.c: In function ‘main’:
./test.c:7:11: warning: ‘foo’ is used uninitialized in this function [-Wuninitialized]
$ gcc -v
Using built-in specs.
COLLECT_GCC=gcc
COLLECT_LTO_WRAPPER=/usr/lib/gcc/x86_64-linux-gnu/4.6.1/lto-wrapper
Target: x86_64-linux-gnu
Configured with: ../src/configure -v --with-pkgversion='Ubuntu/Linaro 4.6.1-9ubuntu3' --with-bugurl=file:///usr/share/doc/gcc-4.6/README.Bugs --enable-languages=c,c++,fortran,objc,obj-c++,go --prefix=/usr --program-suffix=-4.6 --enable-shared --enable-linker-build-id --with-system-zlib --libexecdir=/usr/lib --without-included-gettext --enable-threads=posix --with-gxx-include-dir=/usr/include/c++/4.6 --libdir=/usr/lib --enable-nls --with-sysroot=/ --enable-clocale=gnu --enable-libstdcxx-debug --enable-libstdcxx-time=yes --enable-plugin --enable-objc-gc --disable-werror --with-arch-32=i686 --with-tune=generic --enable-checking=release --build=x86_64-linux-gnu --host=x86_64-linux-gnu --target=x86_64-linux-gnu
Thread model: posix
gcc version 4.6.1 (Ubuntu/Linaro 4.6.1-9ubuntu3)
$
答案 2 :(得分:0)
C Standard不要求编译器在访问未初始化的变量时发出警告。如果程序调用未定义的行为(假设没有语法错误且没有约束违规),甚至不需要编译器发出警告。
使用gcc
,您可以使用-Wuninitialized
启用未初始化变量的警告。正如其他人所指出的,对于最新版本的gcc
,-Wuninitialized
在指定-Wall
时启用。
答案 3 :(得分:0)
使用Clang,完成它。看起来像GCC中的一个错误,因为Clang警告它应该这样。