Chinaunix首页 | 论坛 | 博客
  • 博客访问: 117127
  • 博文数量: 24
  • 博客积分: 1411
  • 博客等级: 上尉
  • 技术积分: 261
  • 用 户 组: 普通用户
  • 注册时间: 2009-08-07 17:49
文章分类

全部博文(24)

文章存档

2009年(24)

我的朋友

分类:

2009-08-08 20:19:13

一句话:

用gcc编译时不带 -W -Wall 两个参数是“愚蠢的”,谨记自勉。
阅读(8346) | 评论(3) | 转发(0) |
给主人留下些什么吧!~~

renzhenmac2009-08-16 17:29:41

这是我从国外一位大哥的博客抄来的,大概意思是这两个参数会显示gcc怀疑的编程错误(而不仅是语法错误)。 不管你编程多牛,不努力榨干gcc、不让编译器帮你最大程度地找错,都是划不来的,所以是"Stupid" http://dirac.org/linux/gdb/04-Breakpoints_And_Watchpoints.php 原话在这里 Note that the compiler generated a warning. That's because we used -W -Wall which instructs gcc to tell us when it sees what it thinks might be a common programming error. The best way to debug your program is to not put the bugs in the program to begin with. You should always use these gcc bug finding options. Let me b

chinaunix网友2009-08-14 17:45:17

呵呵,下边的链接不错,有兴趣的看看 gcc环境变量基础 http://blog.chinaunix.net/u3/93893/showart_2021423.html

chinaunix网友2009-08-14 17:34:04

总的说个原因吧