从 eclipse autotools 插件执行 automake
我最近安装了 eclipse 的 autotools 插件。我为每个源子目录制作了 Makefile.am。我还在configure.ac 文件中包含了AM_INIT_MAKEFILE 宏。该插件确实使用autoreconf -i
。问题是,每当我尝试构建时都会收到错误消息,config.status:错误:找不到输入文件:'Makefile.in'
这表明 automake 从未运行过。有什么想法吗?
I recently installed the autotools plugin for eclipse. I made the Makefile.am for each source subdirectory. I also included the AM_INIT_MAKEFILE macro in the configure.ac file. The plugin DOES use autoreconf -i
. The problem is that I get an error anytime I try to build that says,config.status: error: cannot find input file: 'Makefile.in'
Which indicates that automake was never ran. Any ideas?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我犯了一个初学者的错误。我没有添加 automake 实际运行和制作 Makefile.in 所需的额外文件。另外,要运行任何自动工具(aclocal、automake、autoheader 等),请转到 Project->Invoke Autotools->Invoke(自动工具的名称)
I made a beginner's mistake. I didn't add the extra files automake needs to actually function and make the Makefile.in. Also to run any autotool (aclocal, automake, autoheader, etc.) go to Project->Invoke Autotools->Invoke (name of autotool)