如何使用 Mingw32 配置 gVIM?

发布于 2025-01-03 15:16:07 字数 279 浏览 0 评论 0原文

我正在尝试编译一个 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

我只土不豪 2025-01-10 15:16:07

在 vim 命令行上:

:set makeprg=c:/path/to/mingw32-make.exe

让它工作后,将 set 命令放入 .vimrc

编辑:
当前目录下是否有名为Makefile的文件?
如果没有,请在当前目录中创建 Makefile 并让它调用您的 makefile。

例如,如果您使用 mingw32-make project.mak 构建软件,则创建内容如下的 Makefile

all:
    mingw32-make project.mak

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 create Makefile with contents something like this:

all:
    mingw32-make project.mak
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文