Code :: Blocksで、使用しているGCCコンパイラのバージョンを確認するにはどうすればよいですか?
gcc --version
を実行すると、結果は次のようになります。
gcc (GCC) 4.4.0
Copyright (C) 2009 Free Software Foundation, Inc.
This is free software; see the source for copying conditions. There is NO
warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
これが機能しない場合は、PATH
にコンパイラが正しく設定されていない可能性があります(WindowsでMinGWを使用している場合、これが一般的であると考えられます)。 Code :: Blocks内で次のように:
Settings
-> Compiler and Debugger
GNU GCC Compiler
を選択しますToolchain executables
タブを選択します次に、コマンドラインを使用して、指定されたディレクトリに移動し、次にbin
サブディレクトリに移動して、そこからgcc --version
を実行してみます。
通常、コマンドを実行します
gcc --version
そしてそれはあなたにこのような結果を与えるはずです:
gcc (Ubuntu/Linaro 4.4.4-14ubuntu5) 4.4.5
Copyright (C) 2010 Free Software Foundation, Inc.
This is free software; see the source for copying conditions. There is NO
warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.