无法安装RubyGems 2.0.0,因为“无法加载此类文件 - openssl(LoadError)”

时间:2013-02-27 17:45:36

标签: rubygems openssl

我正在尝试在新机器上设置rails并且在设置RubyGems时遇到问题。由于问题中的错误。检查openssl version时,我得到:OpenSSL 0.9.8r 2011年2月8日

我还应该注意,目前,openssl.cnf可以在$ HOME / .rvm / usr / ssl中找到

显示已安装。我尝试过以下方式重新安装ruby 2.0.0:

rvm reinstall 2.0.0 --with-openssl-dir=$HOME/usr/local

我在这里遇到了一些错误,包括以下对/Users/me/.rvm/log/ruby-2.0.0-p0/configure.log的引用:

[2013-02-27 10:34:16] ./Configure
Usage: Configure [no-<cipher> ...] [enable-<cipher> ...] [experimental-<cipher> ...]
[-Dxxx] [-lxxx] [-Lxxx] [-fxxx] [-Kxxx] [no-hw-xxx|no-hw] [[no-]threads] [[no-]shared]      
[[no-    ]zlib|zlib-dynamic] [no-asm] [no-dso] [no-krb5] [sctp] [386] [--prefix=DIR] 
[--openssldir=OPENSSLDIR] [--with-xxx[=vvv]] [--test-sanity] os/compiler[:flags]

在/Users/me/.rvm/log/ruby-2.0.0-p0/openssl/make.log中:

making all in crypto/des...
cc -I.. -I../.. -I../modes -I../asn1 -I../evp -I../../include  -O   -c -o set_key.o 
set_key.c
set_key.c: In function ‘DES_set_key_unchecked’:
set_key.c:399: error: unsupported inline asm: input constraint with a matching output     
constraint of incompatible type!
set_key.c:402: error: unsupported inline asm: input constraint with a matching output  
constraint of incompatible type!
make[2]: *** [set_key.o] Error 1
make[1]: *** [subdirs] Error 1
make: *** [build_crypto] Error 1

我一直把头发拉了一天。我错过了什么?

感谢阅读!

2 个答案:

答案 0 :(得分:1)

尝试替换

rvm reinstall 2.0.0 --with-openssl-dir=$HOME/usr/local

rvm reinstall 2.0.0 --with-openssl-dir=$HOME/.rvm/usr/ssl

鉴于你说你的openssl配置文件就在那里。

答案 1 :(得分:1)

我在下面的要点中尝试了“选项1”,它对我有用。

https://gist.github.com/jfirebaugh/4007524