强制检查 gcc 中的返回值

发布于 2024-10-16 22:05:26 字数 371 浏览 2 评论 0原文

我正在使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

旧伤还要旧人安 2024-10-23 22:05:26

使用 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++

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文