zoukankan      html  css  js  c++  java
  • GCC -Wall

    官网:http://gcc.gnu.org/onlinedocs/gcc-4.7.2/gcc/Warning-Options.html#Warning-Options
    3.8 Options to Request or Suppress Warnings
    .....
    -Wall
    This enables all the warnings about constructions that some users consider questionable, and that are easy to avoid (or modify to prevent the warning), even in conjunction with macros. This also enables some language-specific warnings described in C++ Dialect Options and Objective-C and Objective-C++ Dialect Options.
    -Wall turns on the following warning flags:

              -Waddress   
              -Warray-bounds (only with -O2)  
              -Wc++11-compat  
              -Wchar-subscripts  
              -Wenum-compare (in C/Objc; this is on by default in C++) 
              -Wimplicit-int (C and Objective-C only) 
              -Wimplicit-function-declaration (C and Objective-C only) 
              -Wcomment  
              -Wformat   
              -Wmain (only for C/ObjC and unless -ffreestanding)  
              -Wmaybe-uninitialized 
              -Wmissing-braces  
              -Wnonnull  
              -Wparentheses  
              -Wpointer-sign  
              -Wreorder   
              -Wreturn-type  
              -Wsequence-point  
              -Wsign-compare (only in C++)  
              -Wstrict-aliasing  
              -Wstrict-overflow=1  
              -Wswitch  
              -Wtrigraphs  
              -Wuninitialized  
              -Wunknown-pragmas  
              -Wunused-function  
              -Wunused-label     
              -Wunused-value     
              -Wunused-variable  
              -Wvolatile-register-var 

    http://wenku.baidu.com/link?url=gbKosrdpS_vhpyXIdn11qWOssqdxMhvjdxGw6LPgQ2Wr5Py_e5O8FRdLvoZ8tLRhA-SL6VUVYz2gqOf6AsOmn1UOeTig-B8pBK_fL6sdpYq

  • 相关阅读:
    4.羽翼sqlmap学习笔记之Post登录框注入
    3.羽翼sqlmap学习笔记之Cookie注入
    2.羽翼sqlmap学习笔记之MySQL注入
    1.羽翼sqlmap学习笔记之Access注入
    转:C语言中的头文件可以自己写吗?
    12.Struts2自定义拦截器
    linux 软件安装篇
    微信开发-PC调试-JS-SDK功能之分享功能调试
    JS加载相对路径脚本的方法
    apache环境之困扰,Rewrite导致无法加载多个不同的.html文件
  • 原文地址:https://www.cnblogs.com/diyunpeng/p/3679135.html
Copyright © 2011-2022 走看看