当前位置: 首页 > 工具软件 > J-LibTool > 使用案例 >

全志在编译时出现的error: Libtool library used but 'LIBTOOL' is undefined解决方案

凌翔宇
2023-12-01



最近刚得到的offer,开始调试全志的芯片,R16系列;之前在公司用Ubuntu14.04编译好好的,把电脑带回家就无法完成编译,查看log显示如下:

Makefile.am:6: error: Libtool library used but 'LIBTOOL' is undefined

Makefile.am:6:   The usual way to define 'LIBTOOL' is to add 'LT_INI

Makefile.am:6:   to 'configure.ac' and run 'aclocal' and 'autoconf' a
Makefile.am:6:   If 'LT_INIT' is in 'configure.ac', make sure
Makefile.am:6:   its definition is in aclocal's search path.
make[4]: *** [Makefile.in] Error 1

在网上找了很多资料,最后说是时间戳造成的,具体原因我也不是很动懂,一般解决办法,如果在、/usr/share/locals是否安装,如果没有先安装:

sudo apt-get install libtool;

安装好后,或者本来就已经安装了,则看如下操作

打印上述语句上面有一句:

cd . && /bin/bash /home/boya/works/r16_tinav2.0/out/astar-parrot/compile_dir/target/json-c-0.12/missing automake-1.14 --gnu

就是编译器根据Makefile进入这个文件夹来执行编译,但就在里面出了问题,所以你就进入这个文件夹下去重新运行下:例如我的是在r16_tinav2.0/out/astar-parrot/compile_dir/target/json-c-0.12/

aclocal

autoheader;

希望能帮到你们,我弄了好久!Good luck!!

 类似资料: