在 Code::Blocks 中检查 GCC 编译器的版本

在 Code::Blocks 中检查 GCC 编译器的版本

如何在 Code::Blocks 中检查我使用的 GCC 编译器是哪个版本?

答案1

运行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从那里运行。

答案2

通常执行命令

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.

相关内容