Build Vim with MinGW. (+ lua, + python)
Steps to build Vim with MinGW
Install Lua, Python and MinGW and execute the following command.
git clone https://github.com/vim-jp/vim.git
cd ..\vim\src
set C_INCLUDE_PATH=C:\Python27\include
set path=C:\MinGW\bin
mingw32-make -f Make_ming.mak GUI=yes IME=yes MBYTE=yes ICONV=yes PYTHON="C:\Python27" DYNAMIC_PYTHON=yes PYTHON_VER=27 CSCOPE=yes NETBEANS=no LUA="C:\Program\ Files\Lua\5.1" DYNAMIC_LUA=yes
Supplement
- I didn't install Ruby and Perl because it was annoying.
- I don't plan to use NETBEANS, so I set it to no.
- If you do not specify C: \ Python27 \ include in C_INCLUDE_PATH, you will get angry if you do not have Python.h.
- Build time is about 1 minute.
- http://vim-jp.org/docs/build_windows_mingw.html
- http://code.google.com/p/vim/source/checkout
- http://tech.groups.yahoo.com/group/vim/message/82006
- https://groups.google.com/forum/?fromgroups#!forum/vim_dev