Issue with -llapack option

Some versions of gfortran (in the foss framework) were having issues
with the -llpack flag, so it is disables as OpenBLAS takes the work.
This commit is contained in:
Jorge Gonzalez 2023-02-17 13:03:22 +01:00
commit acc8505485

View file

@ -23,7 +23,7 @@ all: $(OUTPUT)
$(OUTPUT): modules.o $(OUTPUT).f90
$(FC) $(FCFLAGS) -o $(OBJDIR)/$(OUTPUT).o -c $(OUTPUT).f90
$(FC) $(FCFLAGS) -o $(TOPDIR)/$(OUTPUT) $(OBJECTS) $(OBJDIR)/$(OUTPUT).o $(JSONLIB) -L/usr/local/lib -llapack -lopenblas
$(FC) $(FCFLAGS) -o $(TOPDIR)/$(OUTPUT) $(OBJECTS) $(OBJDIR)/$(OUTPUT).o $(JSONLIB) -L/usr/local/lib -lopenblas
modules.o:
$(MAKE) -C modules all