前往小程序,Get更优阅读体验!
立即前往
首页
学习
活动
专区
工具
TVP
发布
社区首页 >专栏 >【错误记录】编译 Linux 内核报错 ( /bin/sh: 1: bison: not found )

【错误记录】编译 Linux 内核报错 ( /bin/sh: 1: bison: not found )

作者头像
韩曙亮
发布2023-03-30 13:33:57
1.6K0
发布2023-03-30 13:33:57
举报

文章目录

一、报错信息


编译 Linux 内核 , 执行

代码语言:javascript
复制
make menuconfig

配置菜单命令 , 报如下错误 :

代码语言:javascript
复制
root@ubuntu:~/kernel/linux-5.6.14# make menuconfig
  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:568: recipe for target 'menuconfig' failed
make: *** [menuconfig] Error 2
root@ubuntu:~/kernel/linux-5.6.14# 
在这里插入图片描述
在这里插入图片描述

二、解决方案


执行

代码语言:javascript
复制
sudo apt-get install bison

命令 , 安装 bison ;

安装过程如下 :

代码语言:javascript
复制
root@ubuntu:~/kernel/linux-5.6.14# sudo apt-get install bison -y
Reading package lists... Done
Building dependency tree       
Reading state information... Done
The following additional packages will be installed:
  libbison-dev
Suggested packages:
  bison-doc
The following NEW packages will be installed:
  bison libbison-dev
0 upgraded, 2 newly installed, 0 to remove and 154 not upgraded.
Need to get 597 kB of archives.
After this operation, 1,795 kB of additional disk space will be used.
Get:1 http://us.archive.ubuntu.com/ubuntu xenial/main amd64 libbison-dev amd64 2:3.0.4.dfsg-1 [338 kB]
Get:2 http://us.archive.ubuntu.com/ubuntu xenial/main amd64 bison amd64 2:3.0.4.dfsg-1 [259 kB]
Fetched 597 kB in 2s (252 kB/s)
Selecting previously unselected package libbison-dev:amd64.
(Reading database ... 212318 files and directories currently installed.)
Preparing to unpack .../libbison-dev_2%3a3.0.4.dfsg-1_amd64.deb ...
Unpacking libbison-dev:amd64 (2:3.0.4.dfsg-1) ...
Selecting previously unselected package bison.
Preparing to unpack .../bison_2%3a3.0.4.dfsg-1_amd64.deb ...
Unpacking bison (2:3.0.4.dfsg-1) ...
Processing triggers for man-db (2.7.5-1) ...
Setting up libbison-dev:amd64 (2:3.0.4.dfsg-1) ...
Setting up bison (2:3.0.4.dfsg-1) ...
update-alternatives: using /usr/bin/bison.yacc to provide /usr/bin/yacc (yacc) in auto mode
root@ubuntu:~/kernel/linux-5.6.14# 
在这里插入图片描述
在这里插入图片描述
本文参与 腾讯云自媒体分享计划,分享自作者个人站点/博客。
原始发表:2022-03-22,如有侵权请联系 cloudcommunity@tencent.com 删除

本文分享自 作者个人站点/博客 前往查看

如有侵权,请联系 cloudcommunity@tencent.com 删除。

本文参与 腾讯云自媒体分享计划  ,欢迎热爱写作的你一起参与!

评论
登录后参与评论
0 条评论
热度
最新
推荐阅读
目录
  • 文章目录
  • 一、报错信息
  • 二、解决方案
领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档