Created
March 30, 2022 10:28
-
-
Save YongmingZhao/95466d1c102aa187d23543b110ca18da to your computer and use it in GitHub Desktop.
Compile openssl and Erlang/OTP
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
cd openssl-3.0.2 | |
./Configure shared --prefix=`pwd`/target --openssldir=`pwd`/target | |
make | |
make install | |
cd ../blockscout | |
export KERL_CONFIGURE_OPTIONS=--without-javac --with-ssl=/somepath/openssl-3.0.2/target | |
asdf install erlang 24.2 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment