MakeFile 错误:“文件名、目录名或卷标语法不正确”

发布于 2024-08-17 01:10:06 字数 408 浏览 1 评论 0原文

我在运行 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 技术交流群。

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

发布评论

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

评论(1

爺獨霸怡葒院 2024-08-24 01:10:06

尝试将反斜杠更改为正斜杠,看看是否有帮助:

( cd "D:/third party components/arpack96/ARPACK/BLAS"; "D:/third party components/arpack96/ARPACK/make" clean )

或者,您可以通过加倍反斜杠来转义反斜杠。

Try changing the back slashes to forward slashes and see if that helps:

( cd "D:/third party components/arpack96/ARPACK/BLAS"; "D:/third party components/arpack96/ARPACK/make" clean )

Alternatively, you can escape the backslashes by doubling them.

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