我正在尝试从源代码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
我将不胜感激。
答案 0 :(得分:11)
这有助于:
gem install rspec
答案 1 :(得分:7)
如果你首先对Ruby不感兴趣,那么配置Thrift是没有用的。
$ ./configure --without-ruby
所以这是--without-ruby
,而不是--without-rb
,正如其他一些消息来源所暗示的那样。
然后运行make
和sudo make install
。
显然这是一个已知的错误。 我在这里找到了这个:https://issues.apache.org/jira/browse/THRIFT-1367
(我在Mac OS X 10.7.5上,BTW。我不知道任何其他版本/平台...)