最近在研究 GCC, 分享一下.
这篇博客主要分享mac 下安装 gcc 和 binutils 工具.
mac 下输入 gcc -v 其实是链接指向了LLVM, 不是 GNU 的 GCC.
安装 gcc
brew tap homebrew/versions
brew install gcc49
brew 会自动为你安装相关依赖, 比如
gmp4, mpfr2, libmpc08, isl011, cloog018
等待片刻, 抽支烟~
......看到这里, 表示安装完毕.
Pouring gcc49-4.9.2_1.yosemite.bottle.1.tar.gz
/usr/local/Cellar/gcc49/4.9.2_1: 1138 files, 164M
安装目录在
/usr/local/Cellar/gcc49/4.9.2_1
cd /usr/local/Cellar/gcc49/4.9.2_1/bin
ls -lc++-4.9cpp-4.9g++-4.9gcc-4.9gcc-ar-4.9gcc-nm-4.9gcc-ranlib-4.9gcov-4.9x86_64-apple-darwin14.3.0-c++-4.9x86_64-apple-darwin14.3.0-g++-4.9x86_64-apple-darwin14.3.0-gcc-4.9x86_64-apple-darwin14.3.0-gcc-4.9.2x86_64-apple-darwin14.3.0-gcc-ar-4.9x86_64-apple-darwin14.3.0-gcc-nm-4.9x86_64-apple-darwin14.3.0-gcc-ranlib-4.9
你应该明白了, 输入 gcc-4.9 -v 就可以了.
以后使用 GNU 的 GCC 输入 gcc-4.9 就好了.
安装 binutils
brew install binutils
cd /usr/local/Cellar/binutils/2.25/bin可以看到你需要的工具
gaddr2line
gar
gc++filt
gcoffdump
gdlltool
gdllwrap
gelfedit
gnlmconv
gnm
gobjcopy
gobjdump
granlib
greadelf
gsize
gsrconv
gstrings
gstrip
gsysdump
gwindmc
gwindres
享受吧.