Skip to content

Instantly share code, notes, and snippets.

@rolandjitsu
Created August 22, 2021 09:12
Show Gist options
  • Save rolandjitsu/b5a4520fbcec0fa1955b22a95d732103 to your computer and use it in GitHub Desktop.
Save rolandjitsu/b5a4520fbcec0fa1955b22a95d732103 to your computer and use it in GitHub Desktop.
Install OpenSSL
sudo apt-get -y install build-essential checkinstall zlib1g-dev
git clone --depth 1 --branch OpenSSL_1_1_1k https://github.com/openssl/openssl.git
cd openssl
./config zlib '-Wl,-rpath,$(LIBRPATH)'
make
make test
sudo make install
sudo ldconfig -v
brew install openssl@1.1
echo 'export PATH="/usr/local/opt/openssl@1.1/bin:$PATH"' >> ~/.bash_profile
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment