Last active
March 12, 2023 16:40
-
-
Save mjoey/5344b89a82b325c1d1fa to your computer and use it in GitHub Desktop.
[michael-joseph.me] Vim Compilation in 4 steps
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
| #VIM COMPILATION | |
| cd vim/src | |
| #LIB Installation | |
| sudo apt install xorg-dev | |
| #1 CLEAN CONTENT FOLDER | |
| make distclean | |
| #2 CONFIGURATION | |
| #To see different possible configurations | |
| ./configure --help | |
| #Configuration command | |
| ./configure --with-features=huge --enable-python3interp=yes --enable-sniff --enable-rubyinterp=yes --enable-luainterp=yes --enable-perlinterp=yes --with-x | |
| #3 COMPILATION | |
| make | |
| #4 INSTALLATION | |
| make install |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment