mac下使用gnu gcc
Posted phoenix tree
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了mac下使用gnu gcc相关的知识,希望对你有一定的参考价值。
1 mac下安装gnu gcc
brew search gcc
brew install [email protected]
2 mac下编写c/c++代码所需的标准库和头文件
glibc不能在mac下使用,编译不通过,说不支持当前的platform。
就用mac提供的c标准库就可以了,头文件的话,需要自己安装
xcode-select --install
安装xcode command line tool
多了/usr/include目录,但是在该目录下仍然找不到stdarg.h。
stdarg.h在/usr/include/c++/4.2.1/tr1/stdarg.h。
以上是关于mac下使用gnu gcc的主要内容,如果未能解决你的问题,请参考以下文章