OpenSSL 1.0.2m on macOS

前端 未结 6 672
渐次进展
渐次进展 2020-12-13 10:15

For building one particular library I need openssl library version 1.0.2m with devel package. I am working on macOS. Using brew install openssl installs latest

6条回答
  •  抹茶落季
    2020-12-13 11:21

    Maybe it's not a perfect idea, but it solved my problem (libssl.1.0.0.dylib image not found):

    sudo ln -s /usr/lib/libssl.dylib /usr/local/opt/openssl/lib/libssl.1.0.0.dylib
    sudo ln -s /usr/lib/libcrypto.dylib /usr/local/opt/openssl/lib/libcrypto.1.0.0.dylib
    

    Hope it works for you!

    See this reply

提交回复
热议问题