强制检查 gcc 中的返回值
我正在使用 gcc 编译一些 C/C++ 文件。
今天我注意到一个错误导致我的应用程序崩溃。这是因为我的函数没有返回任何值(见下文)。你知道 gcc 中是否有一些标志强制执行此类检查,或者为什么编译器没有警告我这一点?
我使用基本的 -g -D_GNU_SOURCE -o outObjectFile -c myFile.c
选项将 C 文件编译为目标文件。
//.c file
int
myFunc(){
...do something
..without return statement
}
//.h file
extern int myFun();
I am compiling some C/C++ files using gcc.
I noticed today a bug that caused my app to crash. It was caused by the fact that my function didn't return any value (see below). Do you know if there is some flag in gcc enforcing these kind of checking or why the compiler is not warning me about this?
I am compiling C files into object files with a basic -g -D_GNU_SOURCE -o outObjectFile -c myFile.c
option.
//.c file
int
myFunc(){
...do something
..without return statement
}
//.h file
extern int myFun();
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用 GCC 时,请始终使用以下命令进行编译:
-std=c99 -pedantic -Wall -Wextra -Wwrite-strings
(对于 C)-ansi -pedantic -Wall -Wextra -Weffc++
(对于 C++)When using GCC, always compile with:
-std=c99 -pedantic -Wall -Wextra -Wwrite-strings
for C-ansi -pedantic -Wall -Wextra -Weffc++
for C++