如何在 Makefile 中打印 #(尖号)

发布于 2024-11-16 21:54:36 字数 173 浏览 0 评论 0原文

假设您有一个变量设置为:

AVar = "#"

echo "${AVar}"

当运行 make 时,上述内容不会在 Makefile 中输出。

# 必须转义,但 AVar 的内容中可能没有特殊字符?

那么我怎样才能逃脱阿瓦尔呢?

Suppose you have a variable which is set as:

AVar = "#"

echo "${AVar}"

The above thing does not output in Makefile when run through make.

# must be escaped but the AVar may not have special chars in its content?

So what can I escape the Avar?

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

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

发布评论

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

评论(1

鹿港巷口少年归 2024-11-23 21:54:36

在 MacOS X 上使用 GNU Make 3.81 进行测试:

AVar = "\#"

foo:
    @echo "${AVar}"

我不确定“AVar 的内容中可能没有特殊字符”是什么意思。在这种情况下,这是告诉 make # 是字符串的一部分,而不是注释的开头的唯一方法。

Tested working with GNU Make 3.81 on MacOS X:

AVar = "\#"

foo:
    @echo "${AVar}"

I'm not sure what you mean by "AVar may not have special chars in its content". In this case it's the only way to tell make that the # is part of the string, and not the start of a comment.

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