Last active
November 18, 2019 02:23
-
-
Save kairyu/ef9decdd3c35d3e5e318c735b755f279 to your computer and use it in GitHub Desktop.
Compile Vim 7.4 on Cygwin
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
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