Last active
September 19, 2018 08:19
-
-
Save bennyyip/a492252c57470dabc90551e649635826 to your computer and use it in GitHub Desktop.
vim build script for old server
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
| #!/bin/sh | |
| rm -f src/auto/config.cache | |
| make clean || true | |
| make distclean || true | |
| CFLAGS='-g -O2' STRIP=true ./configure --prefix=$HOME/.local --localstatedir=$HOME/.local/var/lib/vim --mandir=$HOME/.local/share/man --enable-acl --disable-gui --without-x --disable-fontset --disable-xsmp --enable-pythoninterp --enable-perlinterp=dynamic --enable-cscope --enable-multibyte --with-features=huge --enable-terminal --enable-fail-if-missing | |
| echo 'Building...' | |
| make |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment