Gaucheをコンパイルしたよ

Lisp系言語をやりたくなったのでGaucheコンパイル・インストールしてみたのですよ。
すぐ飽きそうですけど。
環境:Mac OS 10.6.8

ダウンロード・コンパイル・インストール

$ wget http://prdownloads.sourceforge.net/gauche/Gauche-0.9.2.tgz
$ tar xvfz Gauche-0.9.2.tgz
$ cd Gauche-0.9.2
$ mkdir -p ~/Binary/Gauche
$ ./configure --prefix=$HOME/Binary/Gauche
$ make
$ make test
$ make install

でインストールまでは完了。あとは~/.bashrcに

export PATH=$PATH:$HOME/Binary/Gauche/bin
# もしくは
#alias gosh='~/Binary/Gauche/bin/gosh "$@"'

を記述する。といつも通りのコマンド。
さあ、果たして使う日は来るのでしょうか。