Installing OpenBLAS
Procedure
- Use PuTTY to log in to the server as the root user.
- Decompress the OpenBLAS installation package.
tar zxvf OpenBLAS-0.3.10.tar.gz
- Go to the directory generated after the decompression.
cd OpenBLAS-0.3.10/ export CC=clang export CXX=clang++ export FC=flang
- Perform the compilation and installation.
make FC=flang make prefix=/path/to/OPENBLAS install
- Clear the compilation parameters.
unset CC CXX FC F77 CPPFLAGS LDFLAGS CFLAGS CXXFLAGS FCFLAGS
Parent topic: Configuring the Compilation Environment