使用 PowerShell 和 UNC 路径进行 NMAKE clean
Posted
技术标签:
【中文标题】使用 PowerShell 和 UNC 路径进行 NMAKE clean【英文标题】:NMAKE clean with PowerShell and UNC paths 【发布时间】:2014-03-08 14:24:14 【问题描述】:我在尝试使用 NMAKE、PowerShell 和 UNC 路径清理当前构建时遇到了一些问题。在 nmakefile 中,我的干净目标如下所示:
clean: del obj\* /Q
这应该会在键入“nmake clean”时从“obj”目录中删除所有文件。但是,它不起作用。我收到以下错误:
CMD.exe was started with the specified path
UNC paths are not supported
Using the Windows directory instead
System cannot find the specified file
NMAKE : fatal error U1077: 'del' : return code '0x1'
真的吗?它正在回退到 Windows 目录?谢天谢地,我没有
del *
在干净的目标中。在最初的震惊(以及我没有使用上述命令的宽慰)之后,我试图找到另一种方法来从 nmakefile 中清理我的“obj”目录。我尝试使用 PowerShell 命令而不是“del”,即像这样:
clean: Remove-Item obj/* -Recurse -Force
但是,这仍然不起作用。 NMAKE 仍在尝试启动 CMD.exe,然后从那里运行“Remove-Item”,这当然不起作用。而且它仍然会发生这种“在UNC路径的情况下回退到Windows目录”的恐怖!
谁能告诉我应该如何实现一个适用于 PowerShell 和 UNC 路径的 nmake clean 目标?
另外,有没有办法关闭这种回退到 Windows 目录的恐惧?
谢谢!
【问题讨论】:
【参考方案1】:看来nmake
没有原生支持PowerShell,所以需要带参数运行PowerShell.exe
,像这样:
clean: powershell.exe -NoLogo -NoProfile -NonInteractive -ExecutionPolicy Bypass -Command "Remove-Item obj/* -Recurse -Force"
万一出现问题,先用无害的东西试试:
clean: powershell.exe -NoLogo -NoProfile -NonInteractive -ExecutionPolicy Bypass -Command "Get-ChildItem /* -Recurse -Force"
【讨论】:
以上是关于使用 PowerShell 和 UNC 路径进行 NMAKE clean的主要内容,如果未能解决你的问题,请参考以下文章
Windows 7 - 无网络 - 我需要在本地伪造 UNC 路径以进行开发/测试吗?
在开始作业脚本块中使用 \\?\UNC\ (长 unc 路径)时,get-itemPropertyValue 不绑定路径