2

我无法在我的 Mac 10.8.2 上安装 ruby​​ ree 或 ruby​​ 1.8.7。

我这样做了:

$ brew install libksba
$ brew update
$ brew install autoconf automake
$ brew tap homebrew/dupes
$ brew install autoconf automake apple-gcc42

然后我尝试安装 ruby​​ 1.8.7 但我不能

$ rvm install 1.8.7
No binary rubies available for: osx/10.8.2/x86_64/ruby-1.8.7-p370.
Continuing with compilation. Please read 'rvm mount' to get more information on binary rubies.
Building 'ruby-1.8.7-p370' using clang - but it's not (fully) supported, expect errors.
Installing Ruby from source to: /Users/serg/.rvm/rubies/ruby-1.8.7-p370, this may take a while depending on your cpu(s)...
ruby-1.8.7-p370 - #downloading ruby-1.8.7-p370, this may take a while depending on your connection...
ruby-1.8.7-p370 - #extracting ruby-1.8.7-p370 to /Users/serg/.rvm/src/ruby-1.8.7-p370
ruby-1.8.7-p370 - #extracted to /Users/serg/.rvm/src/ruby-1.8.7-p370
Applying patch /Users/serg/.rvm/patches/ruby/1.8.7/stdout-rouge-fix.patch
Applying patch /Users/serg/.rvm/patches/ruby/1.8.7/no_sslv2.diff
ruby-1.8.7-p370 - #configuring
ruby-1.8.7-p370 - #compiling
Error running 'make', please read /Users/serg/.rvm/log/ruby-1.8.7-p370/make.log
There has been an error while running make. Halting the installation.
Ruby 'ruby-1.8.7-p370' was built using clang - but it's not (fully) supported, expect errors.
Please be aware that you just installed a ruby that requires        2 patches just to be compiled on up to date linux system.
This may have known and unaccounted for security vulnerabilities.
Please consider upgrading to Ruby 1.9.3-194 which will have all of the latest security patches.
MacBook-Pro-Serg-L-6:smartlearn serg$ rvm remove 1.8.7
Removing /Users/serg/.rvm/src/ruby-1.8.7-p370...
/Users/serg/.rvm/rubies/ruby-1.8.7-p370 has already been removed.
Removing ruby-1.8.7-p370 aliases...
Removing ruby-1.8.7-p370 wrappers...
Removing ruby-1.8.7-p370 environments...
Removing ruby-1.8.7-p370 binaries...

错误:

Error running 'make', please read /Users/serg/.rvm/log/ruby-1.8.7-p370/make.log
There has been an error while running make. Halting the installation.

来自 make.log 的日志在这里

4

3 回答 3

1

看起来 rvm 没有找到apple-gcc42与 brew 一起安装的。

确保gcc-4.2可以通过 使用PATH,或者使用它的路径运行安装:

rvm reinstall 1.8.7 --with-gcc=/path/to/brew/apple-gcc42/gcc-4.2

EDIT1:刚刚检查过,RVM 也会搜索,gcc-apple-4.2所以如果它打开PATH,RVM 将自动使用它——这在 RVM 1.16.8 中更新。

于 2012-09-20T13:50:49.500 回答
1

好的,我找到了解决方案。

  1. 删除 Xcode。
  2. 这里我下载了 Mountain Lion 的包。
  3. 安装下载的 osx-gcc-installer。
  4. 安装 Xcode(和命令行工具)。

就这些。

于 2012-10-08T15:16:35.200 回答
1

我尝试了 GCC 包,安装/卸载 Xcode 等,但我认为有效的是:

rvm get stable

(响应包括另一个命令:

sudo sed -i'' -e "s#rvm_configure_env=('LDFLAGS=-L/opt/sm/pkg/active/lib CFLAGS=-I/opt/sm/pkg/active/include CPATH=/opt/sm/pkg/active/include')#rvm_configure_env=('LDFLAGS=-L/opt/sm/pkg/active/lib' 'CFLAGS=-I/opt/sm/pkg/active/include' 'CPATH=/opt/sm/pkg/active/include')#" /etc/rvmrc

)

我很确定这是导致能够成功的原因:

rvm install 1.9.3
于 2013-03-18T16:17:37.823 回答