Skip to content

Instantly share code, notes, and snippets.

@jedp
Created February 10, 2012 19:38
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jedp/1792050 to your computer and use it in GitHub Desktop.
Save jedp/1792050 to your computer and use it in GitHub Desktop.
compiling python support in vim73
# 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