- Download blas.tgz from netlib : http://www.netlib.org/blas/blas-3.8.0.tgz
- cd BLAS
- gfortran -c -O3 *.f; ar rv libblas.a *.o; sudo cp libblas.a /opt/somewhere
- gfortran -shared -fPIC -O3 *.f -o libblas.so
- make
- cp make.inc.example make.inc; vi make.inc
- make
- mkdir build ; cd build ; ccmake .. # enable shared library
- make -j 32; make install
- Requires blas/lapack. use netlib as shown above
- mkdir build; cd build; ccmake ..
- Enable shared library (static will not be made)
- Or enable static library then *.so is not made
- make -j 20