1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

memcachedのengine-puブランチをビルドする

Last updated at Posted at 2012-12-26

今出てるmemcachedから400コミットぐらい先に進んでる公式リポジトリengine-puがあります。
多分ストレージエンジンを差し替えれるようにしている最中の物だと思いますが、触ってみたいですよね。

$ git clone git://github.com/memcached/memcached.git
$ cd memcached
$ git branch -r  origin/14perf
  origin/HEAD -> origin/master
  origin/engine-pu
  origin/gh-pages
  origin/master
  origin/stable
  origin/stable-1.3
$ git checkout origin/engine-pu

獲得は簡単ですが、configureが無くてMakefile.amから格闘しろということかと途方に暮れます。
でもconfig/以下に素敵スクリプトがちゃんと用意されてるのでそれ使いましょう。それがないとversion.m4ファイルの生成すらままならず心臓に至って死にます。(無駄に格闘してた人)

$ ./config/autorun.sh
$ ./configure
$ make -j4

簡単ですね。

1
0
0

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
1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?