使用xcode命令行工具的ruby版本1.9.3、2.2.0、2.2.5的rbenv / ruby​​-build安装失败12

问题描述

clang --version为12或更高时,低于2.3.1的Ruby版本无法安装。要重现该问题,请首先通过软件更新获得xcode命令行开发人员工具版本12或擦除Mac并安装自制软件:

# homebrew installs version 12 of the command line developer tools as well
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install.sh)"

然后这失败了:

brew install rbenv
rbenv install 2.2.5

rbenv install 2.2.5的输出

Downloading openssl-1.0.2u.tar.gz...
-> https://dqw8nmjcqpjn7.cloudfront.net/ecd0c6ffb493dd06707d38b14bb4d8c2288bb7033735606569d8f90f89669d16
Installing openssl-1.0.2u...
Installed openssl-1.0.2u to /Users/kburnett/.rbenv/versions/2.2.5

Downloading ruby-2.2.5.tar.bz2...
-> https://cache.ruby-lang.org/pub/ruby/2.2/ruby-2.2.5.tar.bz2
Installing ruby-2.2.5...

WARNING: ruby-2.2.5 is past its end of life and is Now unsupported.
It no longer receives bug fixes or critical security updates.

ruby-build: using readline from homebrew

BUILD Failed (Mac OS X 10.15.6 using ruby-build 20200819)

Inspect or clean up the working tree at /var/folders/my/qwq5ncb54svfh_qs70kjh4qc0000gn/T/ruby-build.20200921102602.41313.Eghhn7
Results logged to /var/folders/my/qwq5ncb54svfh_qs70kjh4qc0000gn/T/ruby-build.20200921102602.41313.log

Last 10 log lines:
compiling ../.././ext/psych/yaml/reader.c
compiling ../.././ext/psych/yaml/emitter.c
linking shared-object json/ext/generator.bundle
compiling ../.././ext/psych/yaml/parser.c
installing default psych libraries
linking shared-object bigdecimal.bundle
linking shared-object psych.bundle
linking shared-object nkf.bundle
linking shared-object date_core.bundle
make: *** [build-ext] Error 2

显示“结果已登录”的文件中,报告有3个警告和4个错误错误是这些:

 % grep "error:" /var/folders/my/qwq5ncb54svfh_qs70kjh4qc0000gn/T/ruby-build.20200921102602.41313.log
./openssl_missing.h:71:6: error: conflicting types for 'HMAC_CTX_copy'
./openssl_missing.h:95:5: error: conflicting types for 'EVP_CIPHER_CTX_copy'
./openssl_missing.h:173:5: error: conflicting types for 'BN_rand_range'
./openssl_missing.h:177:5: error: conflicting types for 'BN_pseudo_rand_range'

https://gist.github.com/burnettk/04fb637c4ec18f621b2df500dbcec00e处的问题要点。

解决方法

这与Xcode 12版本(2020年9月16日)不符。要“解决” /解决该问题,如果您已经clang --version报告了第12版点,您可以sudo rm -rf /Library/Developer/CommandLineTools然后转到https://developer.apple.com/downloads/,使用您的Apple ID登录,然后找到“用于Xcode 11.5的命令行工具”或类似的工具。一旦clang --version报告了11个点,这应该会再次起作用:rbenv install 2.2.5

此变通办法最初是由bfreezy在https://github.com/rbenv/ruby-build/issues/1353处发现的。

,

Burnettk关于将Xcode CommandLineTools更改为低于12的版本是正确的,但是无需删除/Library/Developer/CommandLineTools,如果您每天使用Xcode,这很可能在您的环境中导致其他问题。

首先,打开Xcode并转到Preferences > Locations,然后检查Command Line Tools下拉菜单中的哪些选项。如果可用,请选择Xcode 11.x,然后重试安装。 Locations view with Xcode 11.7 command line tools selected

如果尚未提供该版本,请从https://developer.apple.com/downloads/安装低于12.0的“命令行工具”的最大版本。完成后,跳回到“位置”首选项,然后选择刚刚安装的工具,然后重新进行Ruby安装。