veclibfort

GNU Fortran compatibility library for Apple's vecLib BLAS/LAPACK

brewmacoslinux
Try with needOr install directly
Source

About

GNU Fortran compatibility for Apple's vecLib

Commands

veclibfort

Examples

Link Fortran code against vecLib through veclibfort wrapper$ gfortran -o program program.f90 -L$(brew --prefix veclibfort)/lib -lveclibfort
Use veclibfort in pkg-config to get compiler flags$ pkg-config --cflags --libs veclibfort
Compile Fortran with BLAS/LAPACK support via veclibfort$ gfortran -o myapp main.f90 $(pkg-config --cflags --libs veclibfort)