rvm运行'./configure时出错


1

描述

将Macbook迁移到新版本后,我在重新安装过程中遇到错误 rvm

重现步骤

⋊> rvm install 2.3.3

环境

  1. OSX 10.13.3
  2. rvm版本:rvm 1.29.3 (主人)Michal Papis,Piotr Kuczynski
  3. 系统红宝石:红宝石 2.5.0p0
  4. 鱼壳,版本 2.5.0

预期的行为

安装红宝石 2.3.3 通过 rvm 完美。

实际行为

Searching for binary rubies, this might take some time.
No binary rubies available for: osx/10.13/x86_64/ruby-2.3.3.
Continuing with compilation. Please read 'rvm help mount' to get more information on binary rubies.
Checking requirements for osx.
Certificates bundle '/usr/local/etc/openssl/cert.pem' is already up to date.
Requirements installation successful.
Installing Ruby from source to: /Users/Coda/.rvm/rubies/ruby-2.3.3, this may take a while depending on your cpu(s)...
ruby-2.3.3 - #downloading ruby-2.3.3, this may take a while depending on your connection...
ruby-2.3.3 - #extracting ruby-2.3.3 to /Users/Coda/.rvm/src/ruby-2.3.3.....
ruby-2.3.3 - #applying patch /Users/Coda/.rvm/patches/ruby/ruby_2_3_gcc7.patch.
ruby-2.3.3 - #applying patch /Users/Coda/.rvm/patches/ruby/2.3.3/random_c_using_NR_prefix.patch.
ruby-2.3.3 - #configuring........................
Error running './configure --prefix=/Users/Coda/.rvm/rubies/ruby-2.3.3 --with-opt-dir=/usr/local/Cellar/libyaml/0.1.7:/usr/local/Cellar/readline/7.0.3_1:/usr/local/Cellar/libksba/1.3.5:/usr/local/opt/openssl --disable-install-doc --enable-shared',
please read /Users/Coda/.rvm/log/1518890785_ruby-2.3.3/configure.log
There has been an error while running configure. Halting the installation.

日志文件/Users/Coda/.rvm/log/1518890785_ruby-2.3.3/configure.log包含以下内容:

checking size of long long... configure: error: in `/Users/Coda/.rvm/src/ruby-2.3.3':
configure: error: cannot compute sizeof (long long)
See `config.log' for more details

环境信息在这里 ( https://gist.github.com/fifiteen82726/47bb65311f9c1399f327e2a470251a42

Answers:


5

在迁移我的Mac之后我也遇到了同样的问题(两者都是MacOS High Sierra)。 跑完之后

sudo mv /usr/local/include /usr/local/include_old

然后

rvm install 2.5.0 --with-openssl-dir=/usr/local/opt/openssl/bin/openssl

事情开始正常。


刚做完 mv 命令对我很有用。谢谢!
Adam Grant
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.