在autotools中,dnl'ed是什么?
我在 autoconf 代码中看到很多关于 dnl'ed 和未 dnl'ed 的内容。 dnl'ed是什么?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
我在 autoconf 代码中看到很多关于 dnl'ed 和未 dnl'ed 的内容。 dnl'ed是什么?
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(2)
来自 GNU M4 1.4.13 宏处理器 手册:
from the GNU M4 1.4.13 macro processor manual:
IIRC,
dnl
是执行下一行
。它只是跳过当前行的其余部分。这就是您在 M4 文件中编写注释的方式。将产生结果文档
(未经测试;也可能终止空闲进程或使硬盘崩溃)。
IIRC,
dnl
isdo-next-line
. It simply skips the remainder of the current line. It's how you write comments in M4 files.will yield the result document
(untested; might also kill the idle process or crash your hard disk).