From acc8505485a93d28163e8f511946ff4d0b1c4920 Mon Sep 17 00:00:00 2001 From: JGonzalez Date: Fri, 17 Feb 2023 13:03:22 +0100 Subject: [PATCH] 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. --- src/makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/makefile b/src/makefile index 39a39a7..c9c747d 100644 --- a/src/makefile +++ b/src/makefile @@ -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