0
this tutorialを使用してcygwynにgccをインストールしようとしています。このステップ$ make -j4
後、私は警告の多くを直面している:警告:スイッチ[-Wswitch]で列挙値 'BUILT_IN_CILK_SYNC'が処理されない
^
../../gcc-4.9.2/gcc/asan.c:2012:11: warning: enumeration value ‘BUILT_IN_ACOS’ not handled in switch [-Wswitch]
../../gcc-4.9.2/gcc/asan.c:2012:11: warning: enumeration value ‘BUILT_IN_ACOSF’ not handled in switch [-Wswitch]
../../gcc-4.9.2/gcc/asan.c:2012:11: warning: enumeration value ‘BUILT_IN_ACOSH’ not handled in switch [-Wswitch]
../../gcc-4.9.2/gcc/asan.c:2012:11: warning: enumeration value ‘BUILT_IN_ACOSHF’ not handled in switch [-Wswitch]
../../gcc-4.9.2/gcc/asan.c:2012:11: warning: enumeration value ‘BUILT_IN_ACOSHL’ not handled in switch [-Wswitch]
彼らがどんな問題を引き起こすのでしょうか?これは何?
cygwinの現在のgccは5.4.0です。コンパイラとして5.4.0の古いバージョンを4.9.2で再コンパイルする時間を無駄にしています。チュートリアルはもちろん廃止されました – matzeri
@matzeriこのバージョンをアンインストールするか、新しいバージョンをインストールするだけですか? – Hanna
'gcc --version'の出力は何ですか? – matzeri