这是我的 configure.ac 中的一些代码:
THIS="h5cc"
AC_MSG_WARN([$THIS])
AC_MSG_WARN(m4_bmatch([h5pcc],
[h5pcc], [parallel],
[h5cc], [serial],
[neither]
))
AC_MSG_ERROR(m4_bmatch([$THIS],
[h5pcc], [parallel],
[h5cc], [serial],
[neither]
))
Iautoconf
和 then configure
,结果如下:
configure: WARNING: h5cc
configure: WARNING: parallel
configure: error: neither
据我所知,这不应该发生,对吧?我错过了什么?