반응형
fatal error: 'openssl/sha.h' file not found
이 퍼킹한 오류때문에 한참 걸렸다.
해결방법
openssl github https://github.com/openssl/openssl 에 가서 프로젝트를 클론 한뒤 make한다.
$ cd ~
$ git clone https://github.com/openssl/openssl.git
$ cd openssl
$ ./config
$ make
좀 많이 오래 걸리는데 해당 작업이 진행 된 뒤, include 디렉토리에 openssl 심볼링 링크를 만들어주면 된다.
$ cd /usr/local/include/
$ ln -s ~/openssl/include/openssl/ .
추가
처음에 make 안하고 클론한 뒤 심볼링 링크만 걸어줬는데 아래와 같은 오류가 발생했다.
fatal error: 'openssl/configuration.h' file not found
make 하고나니 잘 됨!
반응형
'Information* > 알면도움됨' 카테고리의 다른 글
c# 프로세스 소켓 오류 (0) | 2020.03.06 |
---|---|
Frida unable to access Zygote64 error (0) | 2020.03.06 |
VSCode Remote 작업 (Remote - SSH) (0) | 2020.01.18 |
Frida Interceptor.replace (0) | 2019.12.17 |
Ubuntu 18.04 한글 입력하기 (0) | 2019.06.02 |