Issue with -llapack option #43

Merged
JorgeGonz merged 1 commit from issue/lapack into development 2023-02-17 13:05:40 +01:00
Showing only changes of commit acc8505485 - Show all commits

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.
Jorge Gonzalez 2023-02-17 13:03:22 +01:00

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