2

我正在尝试在新机器上设置 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

为此,我已经把头发拉了一天。我错过了什么?

谢谢阅读!

4

2 回答 2

1

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

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

于 2013-03-04T09:01:00.867 回答
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 配置文件就在那里。

于 2013-03-01T20:21:22.840 回答