Skip to content

Instantly share code, notes, and snippets.

@iwadon
Created April 19, 2013 08:44
Show Gist options
  • Save iwadon/5419005 to your computer and use it in GitHub Desktop.
Save iwadon/5419005 to your computer and use it in GitHub Desktop.
GitHubからcloneしたMonoをビルドする手順の一例。configureのオプションは各環境で適切に指定すること。
# GitHubからcloneする
git clone git://github.com/mono/mono.git
# submoduleを更新する (これを忘れるとmakeの途中でエラーになる)
git submodule init
git submodule update
# configureを生成する
NOCONFIGURE=1 ./autogen.sh
# configureを実行する
./configure --prefix=$HOME/local --without-x --disable-nls
# ビルド
make
# インストール
make install
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment