vim8.2编译ubuntu18.06

清理之前的构建
make distclean

配置
./configure --with-features=huge
--enable-python3interp=yes

编译
make

安装
make install

$ cd src
$ sudo make distclean # 如果您以前构建Vim
$ ./configure --with-features=huge
--enable-multibyte
--enable-pythoninterp=dynamic
--with-python-config-dir=/usr/lib/python2.7/config-x86_64-linux-gnu
--enable-python3interp=dynamic
--with-python3-config-dir=/usr/lib/python3.6/config-3.6m-x86_64-linux-gnu
--enable-cscope
--enable-gui=auto
--enable-gtk2-check
--enable-fontset
--enable-largefile
--disable-netbeans
--with-compiledby="lixugood@126.com"
--enable-fail-if-missing
--prefix=/usr/local
$ sudo make
$ sudo make install

./configure --with-features=huge
--enable-multibyte
--enable-rubyinterp=yes
--enable-pythoninterp=yes
--enable-python3interp=yes
--prefix=/usr/local/vim8

原文地址:https://www.cnblogs.com/jiftle/p/13572565.html