Skip to content
This repository has been archived by the owner on Aug 2, 2022. It is now read-only.

Commit

Permalink
Change darwin build to use "openssl" instead of "[email protected]"
Browse files Browse the repository at this point in the history
The eosio_build_darwin.sh script clearly executes a "brew install openssl" which gives openssl 1.0 installed to /usr/local/opt/openssl. Change eosio_build.sh to look in that directory since that appears to be the intention.
  • Loading branch information
spoonincode committed Feb 18, 2018
1 parent bf2c859 commit d8488fd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions eosio_build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -91,8 +91,8 @@
fi

if [ $ARCH == "Darwin" ]; then
OPENSSL_ROOT_DIR=/usr/local/opt/openssl@1.1
OPENSSL_LIBRARIES=/usr/local/opt/openssl@1.1/lib
OPENSSL_ROOT_DIR=/usr/local/opt/openssl
OPENSSL_LIBRARIES=/usr/local/opt/openssl/lib
BINARYEN_BIN=/usr/local/binaryen/bin/
WASM_LLVM_CONFIG=/usr/local/wasm/bin/llvm-config
CXX_COMPILER=clang++
Expand Down

0 comments on commit d8488fd

Please sign in to comment.