首页 > 系统相关 >linux编译protobuf-3.3.0 报错 automake-1.14 command not found 解决

linux编译protobuf-3.3.0 报错 automake-1.14 command not found 解决

时间:2025-01-14 21:00:32浏览次数:3  
标签:1.14 protobuf make automake 编译 报错 3.3

目录

  • linux编译protobuf-3.3.0 报错 automake-1.14: command not found 解决
    

源码下载

https://github.com/protocolbuffers/protobuf/releases

配置编译

配置完成后,编译出错

./configure
make
cd . && /bin/bash /tmp/protobuf-3.3.0/missing automake-1.14 --foreign
/tmp/protobuf-3.3.0/missing: line 81: automake-1.14: command not found

出错原因是依赖的automake版本与当前host上的版本不匹配, 手动生成make所需要的依赖文件。

解决

autoscan 
aclocal 
autoconf 
automake --add-missing
./configure
make
make install

REF

https://blog.csdn.net/hubbybob1/article/details/109244833

标签:1.14,protobuf,make,automake,编译,报错,3.3
From: https://blog.csdn.net/seaneer/article/details/145121313

相关文章