Ubuntu 14.04上的ruby – rbenv构建失败

前端之家收集整理的这篇文章主要介绍了Ubuntu 14.04上的ruby – rbenv构建失败前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我已经在我的Ubuntu 14.04桌面上成功安装了rbenv(和构建工具),似乎工作正常,但是一旦我尝试安装ruby 2.1.1,构建就会失败:
daniel@grape:~$ rbenv install 2.1.1
Downloading yaml-0.1.6.tar.gz...
-> http://dqw8nmjcqpjn7.cloudfront.net/5fe00cda18ca5daeb43762b80c38e06e
Installing yaml-0.1.6...
Installed yaml-0.1.6 to /home/daniel/.rbenv/versions/2.1.1

Downloading ruby-2.1.1.tar.gz...
-> http://dqw8nmjcqpjn7.cloudfront.net/e57fdbb8ed56e70c43f39c79da1654b2
Installing ruby-2.1.1...

BUILD Failed

Inspect or clean up the working tree at /tmp/ruby-build.20140418142258.3543
Results logged to /tmp/ruby-build.20140418142258.3543.log

Last 10 log lines:
installing default ripper libraries
compiling ossl_pkcs7.c
compiling ossl_ssl.c
installing default openssl libraries
linking shared-object openssl.so
make[2]: Leaving directory `/tmp/ruby-build.20140418142258.3543/ruby-2.1.1/ext/openssl'
linking shared-object ripper.so
make[2]: Leaving directory `/tmp/ruby-build.20140418142258.3543/ruby-2.1.1/ext/ripper'
make[1]: Leaving directory `/tmp/ruby-build.20140418142258.3543/ruby-2.1.1'
make: *** [build-ext] Error 2

日志文件内容可以在这里找到:http://pastebin.com/SXxTeCJY

我已经做了一些寻求帮助的这个问题,包括以下这里说的:https://github.com/sstephenson/ruby-build/wiki – 但我没有任何喜悦。

更新:使用Ruby 2.1.2,它修复了这个问题。

14.04可能运行readline 6.3,它使用rl_hook_func_t而不是Function。

这个bug已经在Ruby(https://bugs.ruby-lang.org/issues/9578)中被报告和修复了,但还没有发布。

直到Ruby 2.1.2出来(我假定将包含此修复),您可以使用patch正确支持新的rl_hook_func_t方法。使用它来安装Ruby 2.1.1:

curl -fsSL https://gist.github.com/mislav/a18b9d7f0dc5b9efc162.txt | rbenv install --patch 2.1.1

(资料来源:http://gorails.com/setup/ubuntu/14.04)

原文链接:https://www.f2er.com/ubuntu/349929.html

猜你在找的Ubuntu相关文章