zoukankan      html  css  js  c++  java
  • 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

  • 相关阅读:
    json_encode([0])
    try catch throw
    如何 lookback
    协程||进程
    客户错了?
    循环 php 变量会影响到传入的参数
    csv变成xls, csv乱码
    虚拟机不能git push
    数组下标大小写
    php 静态方法
  • 原文地址:https://www.cnblogs.com/jiftle/p/13572565.html
Copyright © 2011-2022 走看看