Skip to content

Instantly share code, notes, and snippets.

@tmkdam
Forked from yatsu/rbenv-ruby187-macos.sh
Created August 24, 2021 00:34
Show Gist options
  • Save tmkdam/d1eaf74f95dca473a476edbad783b1ce to your computer and use it in GitHub Desktop.
Save tmkdam/d1eaf74f95dca473a476edbad783b1ce to your computer and use it in GitHub Desktop.
Install ruby-1.8.7 with rbenv on macOS Catalina (10.15)
#!/bin/sh
# 1) Install Xcode 11
# 2) Install command line tools: `xcode-select --install`
# 3) Install HomeBrew
# 4) brew tap cartr/qt4 && brew install cartr/qt4/[email protected] subversion rbenv
# 5) Setup rbenv
# 6) Run this command
PKG_CONFIG_PATH="$(brew --prefix cartr/qt4/[email protected])/lib/pkgconfig" \
CFLAGS="-O2 -fno-tree-dce -fno-optimize-sibling-calls -I$(brew --prefix cartr/qt4/[email protected])/include" \
LDFLAGS="-L$(brew --prefix cartr/qt4/[email protected])/lib" \
rbenv install 1.8.7-p375
# If your macOS is older than 10.15, see the history of this gist.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment