“NMAKE:致命错误 u1073”的修复方法是什么?
我正在尝试在 Windows 中安装 apr-1.4.5。当我尝试以下操作时,
nmake Makefile.win PREFIX="c:\Program Files\apr"
出现以下错误:
NMAKE: fatal error u1073: Dont know how to make 'Makefile.win'
有谁知道此错误的原因以及如何解决此错误?
I am trying to install apr-1.4.5 in Windows. When I try the following,
nmake Makefile.win PREFIX="c:\Program Files\apr"
I get the following error:
NMAKE: fatal error u1073: Dont know how to make 'Makefile.win'
Does anyone know the reason for this and how to resolve this error?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
要指定 makefile 的名称,您应该使用
/f
命令行选项:常规 nmake 参数被视为构建目标 - 并且没有名为
Makefile.win
的构建目标这就是错误消息试图告诉您的内容。To specify the name of the makefile you should use
/f
command line option:Regular nmake parameters are considered to be build targets - and there is no build target called
Makefile.win
which is what the error message was trying to tell you.