LEX scripts/kconfig/lexer.lex.c YACC scripts/kconfig/parser.tab.[ch] /bin/sh: 1: bison: not found scripts/Makefile.host:17: recipe for target 'scripts/kconfig/parser.tab.h' failed make[1]: *** [scripts/kconfig/parser.tab.h] Error 127 Makefile:692: recipe for target 'menuconfig' failed make: *** [menuconfig] Error 2
时间: 2024-01-31 22:03:25 浏览: 149
Lex@yacc.rar_LEX_flex_lex/flex_yacc_yacc flex
这个错误提示是由于缺少 bison 工具导致的。bison 是一个生成语法分析器的工具,Linux内核的编译过程中需要用到。
你可以按照以下步骤来安装 bison 工具:
1. 打开终端,输入以下命令更新软件包列表:
```bash
sudo apt-get update
```
2. 然后安装 bison 工具:
```bash
sudo apt-get install bison
```
3. 安装完成后,再次运行编译命令即可成功编译。
如果还有其他问题,请告诉我。
阅读全文