From 376f86f96eb982e83f10514e9dcd994564f973b4 Mon Sep 17 00:00:00 2001 From: Eric Bylaska Date: Thu, 8 Jun 2023 15:41:50 -0700 Subject: [PATCH] Fixed singlet precision fftw3 linking. In general, fftw3 should not be used by most users, but it is included for perfmance testing and cross checking...EJB --- src/config/makefile.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/config/makefile.h b/src/config/makefile.h index 1f2ff5c472..8b2b667bd9 100644 --- a/src/config/makefile.h +++ b/src/config/makefile.h @@ -3622,7 +3622,7 @@ endif # FFTW3 library inclusion ifdef USE_FFTW3 ifndef LIBFFTW3 - LIBFFTW3 = -lfftw3 + LIBFFTW3 = -lfftw3 -lfftw3f endif ifdef FFTW3_LIB CORE_LIBS += -L$(FFTW3_LIB)