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

在树莓派源码工程中 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

猜你喜欢

转载自blog.csdn.net/weixin_43640306/article/details/88958437