From 596ef85072513c0559773d86dba31dc6122cdf81 Mon Sep 17 00:00:00 2001 From: Niku Nitin Date: Sat, 28 Nov 2020 02:01:34 +0530 Subject: [PATCH] Fixed cannot find -lgfortran error in arch --- makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/makefile b/makefile index 2a6dc15..58c3904 100644 --- a/makefile +++ b/makefile @@ -36,7 +36,7 @@ FFLAGS2 = #-vec-report3 OBJ = accuracy.o timer.o input.o spectrum.o VoigtKampff.o phoenix.o xcross.exe: $(OBJ) crosssections.o - $(FOR) -o xcross.exe $(OBJ) $(FFLAGS) crosssections.o $(LIB) -static + $(FOR) -o xcross.exe $(OBJ) $(FFLAGS) crosssections.o $(LIB) -L/usr/lib crosssections.o: crosssections.f90 $(OBJ) $(FOR) -c crosssections.f90 $(FFLAGS)