在 makefile 中将 Cygwin 路径转换为 ​​Windows 路径

发布于 2024-10-07 00:46:36 字数 221 浏览 3 评论 0原文

如何将 Cygwin 样式路径( /cygdrive/c/foo/bar )转换为 Windows 样式( C:/foo/bar )(是的,使用 / 继续)在 GNU makefile 中?我遇到的情况是,将 Cygwin 的 make 与 GCC 一起使用,而 GCC 不理解 Cygwin 样式路径,因此编译器不接受与 make 生成的 makefile 位置相关的路径。

How can I convert a Cygwin style path ( /cygdrive/c/foo/bar ) to Windows style ( C:/foo/bar ) (yes, with / going forward) in a GNU makefile? I have the situation of using Cygwin's make with a GCC that does not understand Cygwin style paths, so paths relative to the makefiles location that are produced by make are not accepted by the compiler.

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

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

发布评论

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

评论(1

¢蛋碎的人ぎ生 2024-10-14 00:46:36

使用shell 函数通过-w 标志执行cygpath 实用程序。

示例:

BAR := /cygdrive/c/foo/bar
WIN_BAR := $(shell cygpath -w ${BAR})

cygpath 接受许多附加选项。有关详细信息,请参阅手册页。

Use the shell function to execute the cygpath utility with the -w flag.

Example:

BAR := /cygdrive/c/foo/bar
WIN_BAR := $(shell cygpath -w ${BAR})

cygpath accepts a lot of additional options. See the man page for details.

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