aclocal 错误
尽管我安装了 Autoconf v 2.67,但尝试运行 aclocal 时出现错误
configure.ac:6: 错误:需要 Autoconf 版本 2.62 或更高版本
/usr/share/aclocal-1.11/init.m4:26:AM_INIT_AUTOMAKE 扩展自...
configure.ac:6:顶层
autom4te:/usr/bin/m4 失败,退出状态:63
aclocal:autom4te 失败,退出状态:63
,这是configure.ac 文件
AC_PREREQ(2.59)
AC_INIT(Header, 1.0, [email protected])
AM_INIT_AUTOMAKE
AC_CONFIG_SRCDIR([Header.h])
AC_CONFIG_FILES([Makefile])
I have an error while trying to run aclocal although i have the Autoconf v 2.67 installed
configure.ac:6: error: Autoconf version 2.62 or higher is required
/usr/share/aclocal-1.11/init.m4:26: AM_INIT_AUTOMAKE is expanded from...
configure.ac:6: the top level
autom4te: /usr/bin/m4 failed with exit status: 63
aclocal: autom4te failed with exit status: 63
and here is the configure.ac file
AC_PREREQ(2.59)
AC_INIT(Header, 1.0, [email protected])
AM_INIT_AUTOMAKE
AC_CONFIG_SRCDIR([Header.h])
AC_CONFIG_FILES([Makefile])
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
可能是你的PATH有问题。或者,尝试在运行 aclocal 时将环境变量 AUTOM4TE 设置为正确的 autom4te:
但是,通常根本不直接调用 aclocal;改为运行 autoreconf。
Probably a problem with your PATH. Or, try setting the environment variable AUTOM4TE to the correct autom4te when you run aclocal:
However, it is typical to not invoke aclocal directly at all; run autoreconf instead.