从源码编译安装vim8过程遇到的问题

目标:vim8, 支持python3,支持gui

./configure --with-features=huge \
--enable-multibyte \
--enable-python3interp=yes \
--with-python3-config-dir=/usr/lib/python3.6/config-3.6m-x86_64-linux-gnu \
--enable-cscope \
--enable-gui=auto \
--enable-fontset \
--enable-largefile \
--prefix=/usr/local 

1. 找不到 python config dir, 解决办法: 到python3安装目录,找到python3-config ,执行python3-config --configdir ,会打印路径

 

2. 找不到X11 header, 解决办法: 安装libX11-devel, libXt-devel(X11 toolkit)

相关文章:

  • 2021-10-21
  • 2021-08-21
  • 2022-12-23
  • 2022-12-23
  • 2022-01-14
  • 2021-09-21
  • 2021-06-29
  • 2022-12-23
猜你喜欢
  • 2021-10-25
  • 2022-12-23
  • 2021-08-17
  • 2022-12-23
相关资源
相似解决方案