Compiling the pi_kernel source code appears: fatal error: openssl/opensslv.h: No such file or directory

Error message appears in make in the Raspberry Pi source code project

Compilation environment: Ubuntu14.04 32-bit system

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

After the installation is complete, re-execute the make command.


Develop diary Raspberry Pi module driver 190401

Guess you like

Origin blog.csdn.net/weixin_43640306/article/details/88958437