Homebrew refusing to link OpenSSL

前端 未结 15 2602
南旧
南旧 2020-11-22 03:51

I\'m on: OSX 10.11.6, Homebrew version 0.9.9m OpenSSL 0.9.8zg 14 July 2015

I\'m trying to play with with dotnetcore and by following their instructions,

I\'

15条回答
  •  没有蜡笔的小新
    2020-11-22 04:42

    The solution above from edwardthesecond worked for me too on Sierra

     brew install openssl
     cd /usr/local/include 
     ln -s ../opt/openssl/include/openssl 
     ./configure && make
    

    Other steps I did before were:

    • installing openssl via brew

      brew install openssl
      
    • adding openssl to the path as suggested by homebrew

      brew info openssl
      echo 'export PATH="/usr/local/opt/openssl/bin:$PATH"' >> ~/.bash_profile
      

提交回复
热议问题