Correct OpenSSL install guide
The previous command will not work anymore Get error: Warning: Refusing to link: openssl Linking keg-only OpenSSL means you may end up linking against the insecure, deprecated system version while using the headers from the Homebrew version. Instead, pass the full include/library paths to your compiler Get a better instruction from https://www.microsoft.com/net/core#macos
This commit is contained in:
parent
4145c3304d
commit
bf5dbd2013
1 changed files with 4 additions and 1 deletions
|
@ -18,8 +18,11 @@ In order to build .NET Command Line Interface, you need the following installed
|
||||||
1. Xcode
|
1. Xcode
|
||||||
2. git (available from http://www.git-scm.com/) on the PATH.
|
2. git (available from http://www.git-scm.com/) on the PATH.
|
||||||
3. Install OpenSSL (a .NET Core requirement)
|
3. Install OpenSSL (a .NET Core requirement)
|
||||||
|
- brew update
|
||||||
- brew install openssl
|
- brew install openssl
|
||||||
- brew link --force openssl
|
- mkdir -p /usr/local/lib
|
||||||
|
- ln -s /usr/local/opt/openssl/lib/libcrypto.1.0.0.dylib /usr/local/lib/
|
||||||
|
- ln -s /usr/local/opt/openssl/lib/libssl.1.0.0.dylib /usr/local/lib/
|
||||||
|
|
||||||
## Building/Running
|
## Building/Running
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue