ブログ

読んで思い出す。忘れるために書く

Q. サポートが切れてるけど Ruby 2.2 をインストールしたい (warning: this use of "defined" may not be portable [-Wexpansion-to-defined])

A. 一旦 libssl1.0-dev をインストールする

apt install libssl1.0-dev # 旧版の libssl をインストール

rbenv install 2.2.10 # 旧版のRuby をインストール

# インストールが終わったら libssl を現行バージョンに戻す
apt install libssl-dev

f:id:innocent-zero:20181204163616p:plain
ruby-2.2.10 is past its end of life and is now unsupported.

サポートはおわったんだ...!!

なんとかしてバージョンアップした環境で動かせないか対策を取ろう! (eg. "軽率に" アップデートしていける環境、インフラ周りを整える)

Links