Installing OpenBLAS Dependencies
Procedure
- Use PuTTY to log in to the server as the root user.
- Go to the OpenBLAS installation directory.
cd /path/to/OPENBLAS
- Decompress the OpenBLAS installation package.
tar -xvf OpenBLAS.tar.gz
- Go to the directory generated after the decompression.
cd OpenBLAS-0.3.6
- Perform the configuration.
export CC=`which clang` export CXX=`which clang++` export FC=`which flang`
- Load the environment variables.
export LD_LIBRARY_PATH=/path/to/OPENBLAS/lib:$LD_LIBRARY_PATH
- Perform the installation.
make make PREFIX=/path/to/OPENBLASinstall
Parent topic: Configuring the Compilation Environment