我正在尝试从源代码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上.我不知道任何其他版本/平台…)