GCCの警告オプション設定
オプション一覧
gcc -Q --help=warnings
にて確認ができる。出力例は以下
特定の警告を一時的に無効にする
# 全ての警告メッセージを抑制したい場合
export CFLAGS="-w"
export CXXFLAGS="-w"
./configure
make
# -Wnoを指定すれば、その警告は無効できる
## c
# 暗黙の関数宣言
export CFLAGS="-Wno-implicit-function-declaration"
# 廃止予定(deprecated)
export CFLAGS="$CFLAGS -Wno-deprecated-declarations"
#
export CFLAGS="$CFLAGS -Wno-stringop-overflow"
## cpp
# intからポインタへの変換
export CXXFLAGS="-Wno-int-to-pointer-cast"
#
export CXXFLAGS="$CXXFLAGS -Wno-class-memaccess -Wno-conversion -Wno-sign-conversion"
# configure より前に CFLAGS を指定しておく必要がある。
./configure
make
Author And Source
この問題について(GCCの警告オプション設定), 我々は、より多くの情報をここで見つけました https://qiita.com/tukiyo3/items/3792fac2eb9f29eb9820著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .