下記の手順でビルドした実行ファイルをGithubにあげました。
もし、ビルドするのがめんどくさかったら使ってください。
====
必要なもの
- https://github.com/ggreer/the_silver_searcher
- pcre-x86-mingw4-8.21-src.tar.bz2
- pcre-x86-mingw4-8.21-bin.tar.bz2
- zlib-x86-mingw4-1.2.6-1-lib.tar.bz2
- zlib-x86-mingw4-1.2.6-1-bin.tar.bz2
手順
- ggreer/the_silver_searcherをクローンし、c9c2b5b をcheckoutする。(最近のコミットだとうまくいかないらしい。下のコメント欄参照)
git clone git://github.com/ggreer/the_silver_searcher.git
cd the_silver_searcher
git checkout c9c2b5b
- pcre-x86-mingw4-8.21-src.tar.bz2内の
pcre.h.generic
とconfig.h.generic
を.genericを外してthe_silver_searcher/src
内にコピーする。
-
zlib-x86-mingw4-1.2.6-1-lib.tar.bz2内の
include/zconf.h
とinclude/zlib.h
をthe_silver_searcher/src
内にコピーする。 -
pcre-x86-mingw4-8.21-bin.tar.bz2内の
bin/libpcre.dll
をthe_silver_searcher
内にコピーする。 -
zlib-x86-mingw4-1.2.6-1-bin.tar.bz2内の
bin/libz.dll
をthe_silver_searcher
内にコピーする。 -
the_silver_searcher/Makefile.w32を以下のように書き換える。
make
- LIBS = -lz -lpthread -lpcre -lshlwapi
+ LIBS = ./libz.dll ./libpcre.dll -lpthread -lshlwapi
- the_silver_searcherに移動してコマンドプロンプトからmakeする。
shell
C:/Users/rbtnn/Desktop/the_silver_searcher>ls
LICENSE README.md doc the_silver_searcher.spec
Makefile.am ag.bashcomp.sh libpcre.dll
Makefile.w32 build.sh libz.dll
NOTICE configure.ac src
C:/Users/rbtnn/Desktop/the_silver_searcher>ls src
config.h ignore.h options.c print.h search.h zconf.h
decompress.c log.c options.h scandir.c uthash.h zlib.h
decompress.h log.h pcre.h scandir.h util.c
ignore.c main.c print.c search.c util.h
C:/Users/rbtnn/Desktop/the_silver_searcher>mingw32-make -f Makefile.w32
gcc -c -O2 -Isrc src/decompress.c -o src/decompress.o
gcc -c -O2 -Isrc src/ignore.c -o src/ignore.o
gcc -c -O2 -Isrc src/log.c -o src/log.o
gcc -c -O2 -Isrc src/main.c -o src/main.o
gcc -c -O2 -Isrc src/options.c -o src/options.o
gcc -c -O2 -Isrc src/print.c -o src/print.o
gcc -c -O2 -Isrc src/scandir.c -o src/scandir.o
gcc -c -O2 -Isrc src/search.c -o src/search.o
gcc -c -O2 -Isrc src/util.c -o src/util.o
gcc -o ag.exe src/decompress.o src/ignore.o src/log.o src/main.o src/options.o s
rc/print.o src/scandir.o src/search.o src/util.o ./libz.dll ./libpcre.dll -lpthr
ead -lshlwapi
C:/Users/rbtnn/Desktop/the_silver_searcher>ls
LICENSE README.md configure.ac src
Makefile.am ag.bashcomp.sh doc the_silver_searcher.spec
Makefile.w32 ag.exe libpcre.dll
NOTICE build.sh libz.dll
C:/Users/rbtnn/Desktop/the_silver_searcher>