如何在 Ubuntu 下编译 gVim?
我正在尝试为 gVim 安装 codecheck 插件,但要做到这一点,我必须使用以下命令编译 gVim插件。
在 apt 上,gVim 包的每个 apt-get 源都会下载普通的 Vim 源,所以我猜编译 GUI 必须是一个配置选项。但是,我可以在 Vim 上安装该插件,但无法编译 gVim(因为当我 make 时,似乎没有 gVim 可执行文件)。
有编译 gVim 的帮助吗?
I am trying to install the codecheck plugin for gVim, but to do so I must compile gVim with the plugin.
On apt, every apt-get source to a gVim package downloads the normal Vim source, so I guess compiling the GUI must be a configure option. However, I can install the plugin on Vim but I can't compile gVim (since when I make there appears no gVim executable).
Any help compiling gVim?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
我很确定您可以在
配置
时添加--enable-gui=gtk2
。至少,我记得我就是这么做的。I'm pretty sure you can just add
--enable-gui=gtk2
whenconfigure
ing. At least, that's how I remember doing it.apt-get build-dep vim
安装 Vim 的构建依赖项。src/INSTALL
,如源代码顶级目录中的README.txt
中所述,了解如何配置和编译它。apt-get build-dep vim
to install the build dependencies for Vim.src/INSTALL
, as explained in theREADME.txt
in the top-level directory of the source, to see how to configure and compile it.安装依赖项后,如果找不到 gvim 可执行文件,请尝试从终端输入
vim -g
- 这是在 GUI 模式下启动的标志。它总是值得一试。After you've got your dependencies installed and you can't find the gvim executable, then try
vim -g
from the terminal - that's the flag for starting in GUI mode. It's always worth a shot.看来这是一个更新的版本: http://vim.wikia.com/wiki/Building_Vim
It seems this is a more updated version: http://vim.wikia.com/wiki/Building_Vim