LoginSignup
39
42

More than 5 years have passed since last update.

Mac で rbenv を使って Ruby をインストールするときに使うスクリプト

Last updated at Posted at 2013-09-21

僕が考えた最強の Ruby インストールスクリプトがこちらになります。

ruby-build が RUBY_CONFIGURE_OPTS_ARRAY をきちんと処理してくれない・・・

#! /bin/bash

PATH=~/.rbenv/bin:~/.rbenv/plugins/ruby-build/bin:$PATH

version=${1:-2.1.0-dev}

trap 'exit 1' 2

eval "$(rbenv init -)"

export RUBY_CONFIGURE_OPTS_ARRAY=( \
  CC=clang CXX=clang++ \
  optflags="-O2 -march=corei7-avx -mtune=corei7-avx" \
  debugflags="-ggdb3" \
)

export RUBY_CONFIGURE_OPTS=" \
  --with-arch=x86_64 \
  --with-valgrind \
  --with-out-ext=tk,tk/* \
  --enable-shared \
  --enable-pthread \
  --disable-install-doc \
  --disable-libedit \
  --with-gdbm-dir=$(brew --prefix gdbm) \
  --with-dbm-dir=$(brew --prefix gdbm) \
  --with-dbm-type=gdbm_compat \
  --with-libyaml-dir=$(brew --prefix libyaml) \
  --with-libffi-dir=$(brew --prefix libffi) \
  --with-openssl-dir=$(brew --prefix openssl) \
  --with-readline-dir=$(brew --prefix readline) \
  --with-opt-dir=$(brew --prefix) \
"

export MAKE_OPTS="-j 2"

[ -d ~/.rbenv/sources/$version ] && rm -rf ~/.rbenv/sources/$version

rbenv install -k -f $version

export RBENV_VERSION=$version
rbenv exec gem update --system 2.1.4
rbenv exec gem install bundler --pre --no-ri --no-rdoc
rbenv rehash

最新版は Gist にあるよ。

39
42
1

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
39
42