web-dev-qa-db-ja.com

Code :: BlocksでGCCコンパイラのバージョンを確認する

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を実行してみます。

5
DMA57361

通常、コマンドを実行します

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.
3
TusharG