在Mac OS高级别山脉上安装GCC

时间:2017-12-19 19:57:14

标签: c macos gcc

我已经访问了以下答案,但我的问题不同。

Install GNU GCC on mac

Mac OS随Clang一起提供,不知怎的/usr/bin/gcc链接到Clang工具我假设因为这条线。

gcc
  

clang:错误:没有输入文件

如何了解如何在我的系统上单独安装https://gcc.gnu.org/

gcc --version
  

配置: - prefix = / Applications / Xcode.app / Contents / Developer / usr --with-gxx-include-dir = / Applications / Xcode.app / Contents / Developer / Platforms / MacOSX.platform / Developer /SDKs/MacOSX10.13.sdk/usr/include/c ++ / 4.2.1

     

Apple LLVM 9.0.0版(clang-900.0.38)

     

目标:x86_64-apple-darwin17.2.0

     

线程模型:posix

     

InstalledDir:/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin

1 个答案:

答案 0 :(得分:1)

  

如何了解如何在我的系统上单独安装https://gcc.gnu.org/

一般来说:不要。这不是标准配置; Clang是当前macOS系统的推荐编译器。

如果您有非常充分的理由,可以使用Homebrew安装GCC(brew install gcc)。请记住,它不能用于构建本机macOS应用程序。