作为目标/依赖项的 Win32 路径

发布于 2024-08-01 14:42:34 字数 324 浏览 3 评论 0原文

是否可以有一个包含 win32 路径名的目标/依赖的 GNU makefile? 我目前使用的是 GNU make 的 win32 3.81 版本,它似乎在驱动器盘符方面有困难。 例如:

C:\MyTarget.obj : c:\MySource.cpp
    cl /c C:\MySource.cpp

上面的 makefile 片段将生成错误。 特别是:

*** multiple target patterns.  Stop.

这个问题有解决办法吗?

谢谢!

Is it possible to have a GNU makefile with a target/dependent containing a win32 path name? I'm currently using the win32 3.81 version of GNU make, and it seems to have difficulties with drive letters. For example:

C:\MyTarget.obj : c:\MySource.cpp
    cl /c C:\MySource.cpp

The above makefile snippet will generate errors. In particular, the folliwng:

*** multiple target patterns.  Stop.

Is there a solution to this problem?

Thanks!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

挖个坑埋了你 2024-08-08 14:42:34

不。“\”被解释为转义行尾。 此外,您不应该在 Makefile 中使用绝对路径名,因为它使其特定于您的计算机。 为什么不使用相对 POSIX 路径?

No. The "\" is interpreted as escaping the end of the line. Besides, you should NEVER use an absolute path name in your Makefile, as it makes it specific to your machine. Why not use a relative POSIX path?

无人接听 2024-08-08 14:42:34

这有点离题,但您可能应该使用 CMake 而不是直接使用 gnumake 在 Windows 上构建项目。

It's a little offtopic, but you should probably use CMake instead of gnumake directly to build projects on Windows.

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