如何使用 Mingw32 配置 gVIM?
我正在尝试编译一个 C++ 文件。
如何配置 gVIM 以使用 mingw32-make.exe
生成/编译文件
我收到 shell returned 2
错误,并且 未指定目标且未找到 makefile
代码> 我注意到的另一件事是它将 C:\..\LOCALS~1\TEMP\something.tmp 2>&1
文件夹传递给 mingw32-make.exe
I am trying to compile a c++ file.
How do you configure gVIM to make/compile files using mingw32-make.exe
I get a shell returned 2
error and No targets specified and no makefile found
another thing i have noticed is that it's passing a C:\..\LOCALS~1\TEMP\something.tmp 2>&1
folder to mingw32-make.exe
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在 vim 命令行上:
:set makeprg=c:/path/to/mingw32-make.exe
让它工作后,将 set 命令放入 .vimrc
编辑:
当前目录下是否有名为
Makefile
的文件?如果没有,请在当前目录中创建
Makefile
并让它调用您的 makefile。例如,如果您使用
mingw32-make project.mak
构建软件,则创建内容如下的Makefile
:On the vim command line:
:set makeprg=c:/path/to/mingw32-make.exe
Once you have it working, put the set command in .vimrc
Edit:
Is there a file named
Makefile
in the current directory?If not, create
Makefile
in the current directory and have it call your makefile.For example, if you build your software with
mingw32-make project.mak
createMakefile
with contents something like this: