From 1b015e0ada2ce39dfed8468f3252946451edc9e6 Mon Sep 17 00:00:00 2001 From: Morev Ilya Date: Mon, 29 May 2023 13:51:42 +0300 Subject: [PATCH] Added extra MKL include paths, used in Ubuntu. This kind of duplication of include paths is not an optimal solution, but it works. Addresses part of issue #35 --- src/ODE_DLB/Make/options.mkl | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/ODE_DLB/Make/options.mkl b/src/ODE_DLB/Make/options.mkl index 005af464..cb1427e1 100644 --- a/src/ODE_DLB/Make/options.mkl +++ b/src/ODE_DLB/Make/options.mkl @@ -1,10 +1,12 @@ EXE_INC = \ -DMKL_ILP64 \ -m64 \ + -I${MKLROOT} \ -I${MKLROOT}/include LIB_LIBS = \ -L${MKLROOT}/lib/intel64 \ + -L/usr/lib/x86_64-linux-gnu/mkl \ -Wl,--no-as-needed \ -lmkl_intel_ilp64 \ -lmkl_sequential \