Created
February 10, 2012 19:38
-
-
Save jedp/1792050 to your computer and use it in GitHub Desktop.
compiling python support in vim73
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
# must set this vi_cv_path_python_plibs var | |
# people say having a trailing slash on the python-config-dir causes problems | |
$ export vi_cv_path_python_plibs="-L/usr/lib64/python2.7/config -lpython2.7 -ldl" | |
$ ./configure --enable-cscope \ | |
--enable-multibyte \ | |
--enable-gui \ | |
--with-python-config-dir=/usr/lib64/python2.7/config \ | |
--enable-pythoninterp=yes \ | |
--with-x \ | |
--prefix=$HOME \ | |
--with-features=huge \ | |
--with-compiledby=jedp | |
$ make && make install |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment