我在我的代码中使用了一些内联函数,gcc.gnu.org说在gcc 4.3之前在语义上存在主要差异。我想使用gcc 4.4+,但我不知道如何在我的Mac上实现。这是gcc -v:
的输出$ gcc -v
Configured with: --prefix=/Applications/Xcode.app/Contents/Developer/usr
--with-gxx-include-dir=/usr/include/c++/4.2.1
Apple LLVM version 5.1 (clang-503.0.38) (based on LLVM 3.4svn)
Target: x86_64-apple-darwin13.1.0
Thread model: posix
从这个我假设我有gcc 4.2.1 -这是正确的吗?我怎样才能得到一个新的?
您可以使用homebrew或macports安装新版本。我相信版本桶里有gcc。你可以使用
安装你想要的版本brew tap homebrew/versions
brew install gcc44
这为我修复了它:
$ brew tap homebrew/versions
$ brew update
$ brew install gcc48