在 makefile 中将 Cygwin 路径转换为 Windows 路径
如何将 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用
shell
函数通过-w
标志执行cygpath
实用程序。示例:
cygpath
接受许多附加选项。有关详细信息,请参阅手册页。Use the
shell
function to execute thecygpath
utility with the-w
flag.Example:
cygpath
accepts a lot of additional options. See the man page for details.