Skip to content
Snippets Groups Projects
Commit d5471696 authored by Antoine Cyril David Hoffmann's avatar Antoine Cyril David Hoffmann :seedling:
Browse files

lapack and blas are included

parent dfa22ff9
No related branches found
No related tags found
No related merge requests found
...@@ -11,6 +11,6 @@ FMDIR = $(HOME)/lib/FM ...@@ -11,6 +11,6 @@ FMDIR = $(HOME)/lib/FM
FFTW3DIR = $(HOME)/lib/fftw-3.3.8 FFTW3DIR = $(HOME)/lib/fftw-3.3.8
#FFTW3DIR = $(FFTW_HOME)#for Marconi #FFTW3DIR = $(FFTW_HOME)#for Marconi
FUTILS_DIR = $(HOME)/lib/futils/src FUTILS_DIR = $(HOME)/lib/futils/src
#LAPACKDIR = $(HOME)/lib/lapack LAPACKDIR = $(HOME)/lib/lapack-3.10.0
BLASDIR = $(HOME)/lib/BLAS-3.11.0
# Naming ideas : HeLaZ, MoNoLiT (Moment Non Linear Torroidal) # Naming ideas : HeLaZ, MoNoLiT (Moment Non Linear Torroidal)
...@@ -78,10 +78,16 @@ ifdef FFTW3DIR ...@@ -78,10 +78,16 @@ ifdef FFTW3DIR
endif endif
# Add lapack local lib # Add lapack local lib
#ifdef LAPACKDIR ifdef LAPACKDIR
LIBS += -llapack -lblas LIBS += -llapack
# LDIRS += -L$(LAPACKDIR)/lib LDIRS += -L$(LAPACKDIR)
#endif endif
# Add blas local lib
ifdef BLASDIR
LIBS += -lblas
LDIRS += -L$(BLASDIR)
endif
# FM library # FM library
ifdef FMDIR ifdef FMDIR
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment