Installing BLAS
Procedure
- Use PuTTY to log in to the server as the root user.
- Run the following commands to decompress the BLAS installation package:
cd /path/to/SRC tar -xvf blas.tgz
- Run the following command to go to the directory generated after decompression:
cd BLAS-3.8.0
- Run the following commands to perform the compilation and installation:
`which gfortran` -c -O3 -fomit-frame-pointer -funroll-loops *.f ar rv libblas.a *.o
- Run the following command to move the compiled static library to the planned directory:
cp libblas.a /path/to/DEPENDENCIES/lib/
Parent topic: Configuring the Compilation Environment