【发布时间】:2018-02-16 22:21:16
【问题描述】:
在我的configure.ac 文件中,我有类似这样的警告和错误:
AC_MSG_ERROR([找不到 Boost Math 头文件,您是否正确指定了 --with-boost-include-path 选项?])
我是老派,喜欢保持行宽小于 80 个字符。但是,当我像这样分割线时(我也喜欢一些适当的缩进)
AC_MSG_ERROR([Could not find the Boost Math header files, did you
specify the --with-boost-include-path option correctly?])
./configure 打印在屏幕上时,错误消息会保留换行和缩进。
在 Autoconf 中断开字符串的正确方法是什么?
【问题讨论】:
标签: autoconf