欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

pi_kernel源码编译出现: fatal error: openssl/opensslv.h: No such file or directory

程序员文章站 2022-07-15 16:49:20
...
在树莓派源码工程中 make 出现下来错误信息

编译环境: Ubuntu14.04 32位系统

scripts/sign-file.c:25:30: fatal error: openssl/opensslv.h: No such file or directory
 #include <openssl/opensslv.h>
                              ^
compilation terminated.
make[1]: *** [scripts/sign-file] Error 1
make: *** [scripts] Error 2

解决方法

$ sudo apt-get install libssl-dev

安装完成后, 重新执行 make 指令即可.


开发日记 树莓派模块驱动 190401