aclocal 错误

发布于 2024-09-29 23:26:38 字数 599 浏览 8 评论 0原文

尽管我安装了 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

空心空情空意 2024-10-06 23:26:38

可能是你的PATH有问题。或者,尝试在运行 aclocal 时将环境变量 AUTOM4TE 设置为正确的 autom4te:

env AUTOM4TE=/path/to/autom4te-2.67 aclocal

但是,通常根本不直接调用 aclocal;改为运行 autoreconf。

Probably a problem with your PATH. Or, try setting the environment variable AUTOM4TE to the correct autom4te when you run aclocal:

env AUTOM4TE=/path/to/autom4te-2.67 aclocal

However, it is typical to not invoke aclocal directly at all; run autoreconf instead.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文