我正在创建一个项目并使用GNU Autoconf工具进行配置和制作.我设置了我的所有库检查和头文件检查,但似乎无法弄清楚如何检查系统上是否存在可执行文件,如果它不存在则失败.
我试过了:
AC_CHECK_PROG(TEST,testprogram,AC_MSG_ERROR(Cannot find testprogram.))
当我配置它运行和输出:
Checking for testprogram... find: `testprogram. 15426 5 ': No such file or directory
但不会失败.
解决方法
尝试这是我从我的一个项目中解除的,它在路径中找到名为quantlib-config的东西:
# borrowed from a check for gnome in GNU gretl: def. a check for quantlib-config AC_DEFUN(AC_PROG_QUANTLIB,[AC_CHECK_PROG(QUANTLIB,quantlib-config,yes)]) AC_PROG_QUANTLIB if test x"${QUANTLIB}" == x"yes" ; then # use quantlib-config for QL settings [.... more stuff omitted here ...] else AC_MSG_ERROR([Please install QuantLib before trying to build RQuantLib.]) fi