如何在 win32 上使用 mingw 的 makefile
我似乎忘记了在 win32 机器上使用 ac 程序的 makefile 时在命令行上输入的内容。我记得我应该输入类似的内容
mingw32-make
。但这不工作自动取款机。我完成了所有必要的工作,例如设置环境 mingw 变量。对命令有什么帮助吗?
i seem to have forgotten what is typed on the command line when using a makefile for a c program on a win32 machine. what i remember is that i should type something like
mingw32 -make
. but that is not working atm. ive done all the necessary stuff like setting environment mingw variables. any help on the command?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
很大程度上取决于安装的细节,但我怀疑问题在于
mingw32
和-make
之间的空格。您想要使用
mingw32-make
命令,而不是带有-make
参数的mingw32
命令。A lot depends on the details of your installation, but I suspect the problem is the space between
mingw32
and-make
.You want to use the
mingw32-make
command, not themingw32
command with a-make
argument.