Skip to content

Instantly share code, notes, and snippets.

@frozenbubbleboy
frozenbubbleboy / ruby-1.8.7-install.txt
Last active April 17, 2017 18:54
Install Ruby 1.8.7 on MacOS Sierra
brew install gcc@4.6 openssl libyaml libffi
export CC=/usr/local/bin/gcc-4.6
export CFLAGS='-g -O2'
export RUBY_CONFIGURE_OPTS=--with-openssl-dir=`brew --prefix openssl`
export CONFIGURE_OPTS=--with-openssl-dir=`brew --prefix openssl`
# I had to edit the svn repo URL in /usr/local/Cellar/ruby-build/<VERSION>/share/ruby-build/1.8.7-p375 and change the URL from http://svn.ruby-lang.org/repos/ruby/branches/ruby_1_8_7 to https://svn.ruby-lang.org/repos/ruby/branches/ruby_1_8_7
rbenv install 1.8.7-p375