scripts/sign-file.c:25:30: fatal error: openssl/opensslv.h: 没有那个文件或目录 compilation terminated. scripts/Makefile.host:110: recipe for target 'scripts/sign-file' failed make[1]: *** [scripts/sign-file] Error 1 Makefile:1270: recipe for target 'scripts' failed make: *** [scripts] Error 2
时间: 2023-12-19 22:24:13 浏览: 180
makefile报错
5星 · 资源好评率100%
这个错误提示是由于缺少 OpenSSL 库导致的,编译脚本无法找到 openssl/opensslv.h 文件。
你可以按照以下步骤来安装 OpenSSL 库:
1. 打开终端,输入以下命令更新软件包列表:
```bash
sudo apt-get update
```
2. 然后安装 OpenSSL 库:
```bash
sudo apt-get install libssl-dev
```
3. 安装完成后,运行以下命令重新编译内核:
```bash
make
```
如果还有其他问题,请告诉我。
阅读全文