MakeFile 错误:“文件名、目录名或卷标语法不正确”
我在运行 makefile 时遇到此错误:
clean: cleanlib
cleanlib:
( cd "D:\third party components\arpack96\ARPACK\BLAS"; "D:\third party components\arpack96\ARPACK\make" clean )
The command I use to run the make file is
make clean
这是无法理解的,因为这两个路径实际上在我的机器上可用(我很仔细地检查过)。
我使用的是 Windows XP,不确定这是否有影响。
有什么想法吗?
I encountered this error when I was running my makefile:
clean: cleanlib
cleanlib:
( cd "D:\third party components\arpack96\ARPACK\BLAS"; "D:\third party components\arpack96\ARPACK\make" clean )
The command I use to run the make file is
make clean
This is incomprehensible, as both the paths are actually available on my machine ( I took great care to check it).
I am using Windows XP, not sure whether that makes a difference or not.
Any ideas?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
尝试将反斜杠更改为正斜杠,看看是否有帮助:
或者,您可以通过加倍反斜杠来转义反斜杠。
Try changing the back slashes to forward slashes and see if that helps:
Alternatively, you can escape the backslashes by doubling them.