mac怎么查看gcc版本

在MacOS系统中,可以使用gcc命令来编译C/C++程序。要查看gcc的版本,可以使用以下命令:

gcc --version

执行该命令后,会在终端输出gcc的版本信息,例如:

Configured with: --prefix=/Library/Developer/CommandLineTools/usr --with-gxx-include-dir=/usr/include/c++/4.2.1
Apple LLVM version 11.0.3 (clang-1103.0.32.29)
Target: x86_64-apple-darwin19.4.0
Thread model: posix
InstalledDir: /Library/Developer/CommandLineTools/usr/bin

其中,第二行显示了gcc的版本号。在这个例子中,gcc的版本号是Apple LLVM version 11.0.3。

如果你想查看g++的版本,可以使用类似的命令:

g++ --version

这个命令会输出g++的版本信息。

 
匿名

发表评论

匿名网友
:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen:
确定