Skip to content

Instantly share code, notes, and snippets.

@kairyu
Last active November 18, 2019 02:23
Show Gist options
  • Save kairyu/ef9decdd3c35d3e5e318c735b755f279 to your computer and use it in GitHub Desktop.
Save kairyu/ef9decdd3c35d3e5e318c735b755f279 to your computer and use it in GitHub Desktop.
Compile Vim 7.4 on Cygwin
apt-cyg install make automake gcc-core gcc-g++ python python3 ruby-devel lua-devel tcl-devel libncurses-devel libiconv-devel cscope
./configure --with-features=huge \
--enable-multibyte \
--enable-rubyinterp \
--enable-pythoninterp \
--with-python-config-dir=/usr/lib/python2.7/config \
--enable-python3interp \
--with-python3-config-dir=/usr/lib/python3.4/config-3.4m \
--enable-perlinterp \
--enable-luainterp \
--enable-gui=gtk2 --enable-cscope --prefix=/usr
make VIMRUNTIMEDIR=/usr/share/vim/vim74
make install
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment