Created
February 15, 2011 01:30
-
-
Save ongaeshi/826936 to your computer and use it in GitHub Desktop.
groonga-1.1.0をWindowsでビルドする時のconfigure設定
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ---- | |
| 今の設定 | |
| $ 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 | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
こうです!(prefixにも--)
./configure --host=i686-w64-mingw32 --prefix='/c/users/ongaeshi/work/rroonga/vendor/local'