2

我正在尝试在我的新 Mac 上安装 Ruby,但遇到了一些问题,想知道是否有人可以提供帮助?

主要错误是:

Right now Ruby requires gcc to compile, but Xcode 4.2 and later no longer ship with gcc.
Instead they ship with llvm-gcc (to which gcc is a symlink) and clang, neither of which are
supported for building Ruby. Xcode 4.1 was the last version to ship gcc, which was
/usr/bin/gcc-4.2.

我尝试使用这篇文章“由于符号链接错误而无法在 Mac OSX 10.8.1 中安装 ruby​​-1.9.2 ”中的建议来解决错误,但即使在通过自制软件安装 gcc 之后,我仍然会收到上述错误。

当我输入时gcc - v,我收到以下消息:

Using built-in specs.
Target: i686-apple-darwin11
Configured with: /private/var/tmp/llvmgcc42/llvmgcc42-2336.11~67/src/configure --disable-checking --enable-werror --prefix=/Applications/Xcode.app/Contents/Developer/usr/llvm-gcc-4.2 --mandir=/share/man --enable-languages=c,objc,c++,obj-c++ --program-prefix=llvm- --program-transform-name=/^[cg][^.-]*$/s/$/-4.2/ --with-slibdir=/usr/lib --build=i686-apple-darwin11 --enable-llvm=/private/var/tmp/llvmgcc42/llvmgcc42-2336.11~67/dst-llvmCore/Developer/usr/local --program-prefix=i686-apple-darwin11- --host=x86_64-apple-darwin11 --target=i686-apple-darwin11 --with-gxx-include-dir=/usr/include/c++/4.2.1
Thread model: posix
gcc version 4.2.1 (Based on Apple Inc. build 5658) (LLVM build 2336.11.00)

最后,我检查了我的 /usr/bin 文件夹,我看到了一个大约 104KB 的 gcc-4.2 unix 可执行文件。这是我应该拥有的吗?

4

3 回答 3

2

试试这个让rvm知道gcc使用哪个:

CC=/usr/bin/gcc-4.2 rvm install 1.9.3 

或者,如果您想使用 Homebrew-installed gcc

CC=/usr/local/bin/gcc-4.2 rvm install 1.9.3

这取决于gcc-4.2口译员在哪里。

两种选择:

rvm install 1.9.3 --with-gcc=clang

或使用ruby-build.

编辑 2013 年 9 月 7 日:我非常喜欢安装红宝石的另一种选择是ruby ​​-install 。它本着同一作者的顽固精神。简单并且可以很好地完成工作。

于 2012-12-27T20:26:43.607 回答
1

我还没有发表评论的声誉,但我只想指出,基于 Telemachus 的评论,这对我有用 rvm install 1.9.3 --with-gcc=clang

我正在运行 os x 10.8.4

于 2013-09-06T13:28:36.480 回答
0

您应该先安装 xcode 命令行工具,您可以在 xcode 首选项的下载选项卡中找到。

在此处输入图像描述

然后安装 homebrew,它是 centos 中类似 yum 的包管理器,你可以用它来安装 git 等。

然后安装 rvm,然后使用rvm install ruby.

于 2012-12-27T08:51:53.573 回答