From 63e983b460610faa7fd63d466a52d5dc523a6a83 Mon Sep 17 00:00:00 2001 From: Ian Jauslin Date: Mon, 19 Feb 2024 11:41:47 -0500 Subject: [PATCH] Link openblas --- Makefile | 2 +- src/navier-stokes.c | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index fdb180c..c2af43e 100644 --- a/Makefile +++ b/Makefile @@ -30,7 +30,7 @@ LD=$(CC) #INCLUDES = #LIBDIRS = -LIBS = -lm -lfftw3 -lfftw3_threads +LIBS = -lm -lfftw3 -lfftw3_threads -lopenblas_64 override LDFLAGS +=$(LIBDIRS)$(LIBS) diff --git a/src/navier-stokes.c b/src/navier-stokes.c index 77f6d99..9cfac70 100644 --- a/src/navier-stokes.c +++ b/src/navier-stokes.c @@ -18,6 +18,7 @@ limitations under the License. #include "io.h" #include "navier-stokes.h" #include "complex_tools.h" +#include #include #include #include