[1. 개요]
윈도우와 전체적인 맥락은 비슷 함
- ./Configure '-Wl,-rpath,$(LIBRPATH)'
# 혹은 Perl Configure - make
산출물
- libssl.a
- libcrypto.a
- libcrypto.so
# => libcrypto.so.3 - libssl.so
# => libssl.so.3
[2. update]
윈도우 설치와 같이, --prefix 와 --openssldir 을 명시하는 편이 좋음
- ./Configure --prefix=$(pwd)/release --openssldir=$(pwd)/release
- make
- make install
# --prefix 와 --openssldir 에 명시한 곳에, 개발에 필요한 파일들이 위치하게 됨.
'C++ > Openssl' 카테고리의 다른 글
빌드 방법 [윈도우 기준] (0) | 2025.07.23 |
---|