Skip to content

Instantly share code, notes, and snippets.

@ongaeshi
Created February 15, 2011 01:30
Show Gist options
  • Select an option

  • Save ongaeshi/826936 to your computer and use it in GitHub Desktop.

Select an option

Save ongaeshi/826936 to your computer and use it in GitHub Desktop.
groonga-1.1.0をWindowsでビルドする時のconfigure設定
----
今の設定
$ cd vendor/groonga-1.1.0
$ ./configure CC='i686-w64-mingw32-gcc' CFLAGS='-g -O0 -mno-cygwin' prefix='/c/users/ongaeshi/work/rroonga/vendor/local' i386-pc-mingw32
----
を、これに直すということで意図とあってますか?(ongaeshi)
$ cd vendor/groonga-1.1.0
$ ./configure --host=i686-w64-mingw32 prefix='/c/users/ongaeshi/work/rroonga/vendor/local'
----
あ、それともこっちですかね?(ongaeshi)
$ cd vendor/groonga-1.1.0
$ ./configure --host=i686-w64-mingw32 prefix='/c/users/ongaeshi/work/rroonga/vendor/local' i386-pc-mingw32
@kou

kou commented Feb 15, 2011

Copy link
Copy Markdown

こうです!(prefixにも--)
./configure --host=i686-w64-mingw32 --prefix='/c/users/ongaeshi/work/rroonga/vendor/local'

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment