解释 错误/bin/sh: 1: bison: not found make[1]: *** [scripts/Makefile.lib:212: scripts/kconfig/parser.tab.h] Error 127 make: *** [Makefile:565: licheepi_zero_defconfig] Error 2
时间: 2023-08-08 17:10:00 浏览: 190
利用 Flex/Bison 构造编译器
这个错误提示表明在执行 make 命令编译项目时,bison 工具未找到,导致编译失败。bison 是一种语法分析程序生成器,也常用于编译器和解释器的开发中。你需要安装 bison 工具,以便在编译时使用。你可以在终端中使用命令 sudo apt-get install bison 安装 bison 工具,然后再次运行 make 命令编译项目。
阅读全文