Skip to content

Instantly share code, notes, and snippets.

@TheMY3
Created July 15, 2017 07:24
Show Gist options
  • Save TheMY3/dcc9aca887f76c4fed4a9cb4bf3b4632 to your computer and use it in GitHub Desktop.
Save TheMY3/dcc9aca887f76c4fed4a9cb4bf3b4632 to your computer and use it in GitHub Desktop.
ubuntu 16.04 gvim compile script with python2
#!/bin/bash
LDFLAGS="" CPPFLAGS="" CFLAGS="-g -O2" ./configure \
--with-compiledby="jadson" \
--enable-fail-if-missing \
--enable-cscope \
--enable-gpm \
--enable-selinux \
--disable-smack \
--with-features=huge \
--enable-multibyte \
--enable-acl \
--with-x \
--enable-xim \
--enable-gui=gnome2 \
--disable-gtk2-check \
--enable-gnome-check \
--disable-motif-check \
--enable-pythoninterp && make -j4 && sudo make install && vim --version
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment