How to fix: fatal error: openssl/opensslv.h: No su

2020-02-21 03:35发布

I have RedHat Enterprise Linux Server 7, and I downloaded the linux kernel version 4.12.10 which I am trying to compile but when I execute the following command:

make modules

I get the following error:

scripts/sign-file.c:25:30: fatal error: openssl/opensslv.h: No such file or directory

Does anyone have an idea to fix this please ?

3条回答
【Aperson】
2楼-- · 2020-02-21 04:03

On CYGwin, you can install this as a typical package in the first screen. Look for

libssl-devel

查看更多
手持菜刀,她持情操
3楼-- · 2020-02-21 04:15

For Alpine Linux:

apk add openssl-dev
查看更多
forever°为你锁心
4楼-- · 2020-02-21 04:18

To fix this problem, you have to install OpenSSL development package, which is available in standard repositories of all modern Linux distributions.

To install OpenSSL development package on Debian, Ubuntu or their derivatives:

$ sudo apt-get install libssl-dev

To install OpenSSL development package on Fedora, CentOS or RHEL:

$ sudo yum install openssl-devel 

see this link for more informations

Edit : As @isapir has pointed out, for Fedora version>=22 use the DNF package manager :

dnf install openssl-devel
查看更多
登录 后发表回答