Installing OpenSSL
Procedure
- Use PuTTY to log in to the server as the root user.
- Configure the environment variables.
export CC=`which clang` export CXX=`which clang++` export FC=`which flang`
- Decompress the OpenSSL installation package.
tar -zxvf openssl-1.1.1l.tar.gz
- Go to the directory generated after the decompression.
cd openssl-1.1.1l
- Perform the configuration.
./Configure --prefix=/path/to/OPENSSL
- Perform the installation.
make -j&&make install
Parent topic: Configuring the Compilation Environment