使用 RVM 和 ruby 1.8.6 在 Lion 上安装 rspec-1.3.2 时出现问题
我正在尝试使用 RVM 和 Ruby 1.8.6 在 OS X Lion 上安装 rspec 版本 1.3.2
安装时,我得到以下信息:
$ gem install rspec -v=1.3.2
Abort trap: 6
我能够使用系统 ruby 成功安装相同的 rspec 版本。我试图对这个问题进行一些研究,但看起来没有人遇到过同样的事情。类似的问题建议在安装 ruby 之前export CC=gcc-4.2
。我尝试过(在彻底清除 RVM 并重新安装最新版本 1.6.31 之后),但没有效果。
还有其他人遇到过这种情况吗?你找到解决办法了吗?
I'm trying to install rspec version 1.3.2 on OS X Lion using RVM and Ruby 1.8.6
When I install, I get the following:
$ gem install rspec -v=1.3.2
Abort trap: 6
I'm able to successfully install the same rspec version using the system ruby. I've tried to do some research into the problem, but it doesn't look like anybody has run into the same thing. Similar questions have suggested export CC=gcc-4.2
before installing ruby. I tried that (after completely blowing away RVM and reinstalling the latest version, 1.6.31 right now) but it had no effect.
Has anyone else else encountered this? Have you found a solution?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我全新安装了 1.8.6,没有 gem,并安装了详细标志...
我看到 Abort Trap 6 的问题似乎表明缺少某些依赖项。我希望这个问题可以通过原始命令得到解决,但最终决定只降低一个版本。
为什么必须使用 1.3.2 而不是 1.3.1?希望这有帮助。
I installed 1.8.6 fresh with no gems and installed with verbose flag...
I see the problem of Abort Trap 6 seems to indicate that some dependency is missing. I was hoping that this would get resolved with the pristine command, but settled on just going down a version.
Why must you use 1.3.2 instead of 1.3.1? Hope this helps.