由于ruby rake错误,无法构建apache thrift

前端之家收集整理的这篇文章主要介绍了由于ruby rake错误,无法构建apache thrift前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我正在尝试从源代码tarball(https://dist.apache.org/repos/dist/release/thrift/0.9.0/thrift-0.9.0.tar.gz)构建thrift,但它失败并出现此错误
Making all in rb
make[3]: Entering directory `/home/akonsu/a/thrift-0.9.0/lib/rb'
/usr/local/bin/rake 
rake aborted!
cannot load such file -- rspec/core/rake_task

我将不胜感激任何帮助.

解决方法

如果你首先对Ruby不感兴趣,那么配置Thrift就可以了.
$./configure --without-ruby

正如其他一些消息来源所暗示的那样,那就是–with-ruby,而不是–without-rb.

然后运行make和sudo make install.

这显然是一个已知的错误.
我在这里找到了这个:https://issues.apache.org/jira/browse/THRIFT-1367

(我在Mac OS X 10.7.5,BTW上.我不知道任何其他版本/平台…)

原文链接:https://www.f2er.com/ruby/267658.html

猜你在找的Ruby相关文章