如何在 OS X Lion 上获取 GCC?
我最近买了一台新 Mac,并对我的旧 Mac 和 Mac 进行了时间机器恢复。将xCode版本更新到最新版本。搬家后我就失去了使用Make和GCC的能力;说这些命令不可用。我使用 Make 和 GCC 来开发课程的家庭作业,然后将这些作业 SCP 到学校的 Linux 盒子上,然后从那里运行。
如何获取适用于 Mac OS Lion 的 GCC 和 Make?我看过一些关于如何通过编译通过源代码安装的文章,但它们会自动假设您已经安装了 GCC,而我没有安装。
请帮忙!
I recently bought a new Mac and did a time machine restore of my old mac & updated the xCode version to the latest version. After the move I have lost the ability to use Make and GCC; saying these commands are unavailable. I use Make and GCC to develop for homework assignments for classes that I later SCP up to a Linux box at school then run from there.
How do I get GCC and Make for Mac OS Lion? I've seen some articles on how to install via source via compiling but they automatically assume you have GCC installed, which I do not.
Please help!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(5)
gcc 应该位于
/Developer/usr/bin/
中。检查那里。gcc should be in
/Developer/usr/bin/
. Check there.您将在通常的位置找到这些工具,例如 /usr/bin/make。
另请参阅superuser.com 上的帖子
You'll find the tools at the usual place, for example /usr/bin/make.
See also post on superuser.com
您可以访问App Store并下载XCode。它是免费的。它将为您提供 llvm(编译器)、make 和相关工具。
You can access the App Store and download XCode. It's free. It will give you llvm (compiler), make and related tools.
不幸的是,仅仅更新路径(我发现它不在任何 /Developer 中,而是在 /Applications/Xcode.app 中)并不能解决其他问题,例如缺少手册页。 Apple 发布了命令行开发人员工具的新开发人员下载。要么直接转到 Apple 的开发人员页面,查找更多信息和链接 此处。
Unfortunately justing updating the path (which I found not in any /Developer but actually in /Applications/Xcode.app) doesn't solve other issues like missing manpages. Apple has released a new developer download for command line developer tools. Either go directly to Apple's developer page, for find a little more info and the link here.
从此处安装自制程序
然后在 zsh 中输入
brew 安装 gcc
然后,
gcc --版本
现在就可以走了。
Install homebrew from here
then in zsh type
brew install gcc
then,
gcc --version
and you're good to go.