copy and paste this google map to your website or blog!
Press copy button and paste into your blog or website.
(Please switch to 'HTML' mode when posting into your blog. Examples: WordPress Example, Blogger Example)
all warnings being treated as errors | 100个gcc小技巧 这是因为缺省的CFLAGS里含有 -Werror 选项,将警告信息升级为错误。 当然,一方面这可以让你重视这些可能会带来隐患的警告信息;但,如果你不想修改源码,也可以把这个选项关掉,通过修改Makefile或者使用命令行: $ make CFLAGS=" -Wno-error" 详情参见 gcc手册 xmj