-
Notifications
You must be signed in to change notification settings - Fork 0
/
Linux-x86-64-gfortran.ssmp
33 lines (33 loc) · 1.42 KB
/
Linux-x86-64-gfortran.ssmp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
# Tested with: GFortran 7.4.0, LAPACK 3.8.0, FFTW 3.3, Libint 1.1.6, Libxc 4.3.4, libxsmm 1.12
# Author: Matthias Krack ([email protected], PSI, June 2019)
CC = gcc
CPP =
FC = gfortran
LD = gfortran
AR = ar -r
FFTW_INC = $(GCC_DIR)/fftw/3.3/include
FFTW_LIB = $(GCC_DIR)/fftw/3.3/lib
LIBINT_INC = $(GCC_DIR)/libint/1.1.6-LARGE_L/include
LIBINT_LIB = $(GCC_DIR)/libint/1.1.6-LARGE_L/lib
LIBXC_INC = $(GCC_DIR)/libxc/4.3.4/include
LIBXC_LIB = $(GCC_DIR)/libxc/4.3.4/lib
LIBXSMM_INC = $(GCC_DIR)/libxsmm/1.12/include
LIBXSMM_LIB = $(GCC_DIR)/libxsmm/1.12/lib
DFLAGS = -D__FFTW3 -D__LIBINT -D__LIBXC -D__LIBXSMM \
-D__LIBINT_MAX_AM=7 -D__LIBDERIV_MAX_AM1=6 -D__MAX_CONTR=4
CPPFLAGS =
FCFLAGS = $(DFLAGS) -O2 -ffree-form -ffree-line-length-none \
-fopenmp -ftree-vectorize -funroll-loops -mtune=native -std=f2008 \
-I$(FFTW_INC) -I$(LIBINT_INC) -I$(LIBXC_INC) -I$(LIBXSMM_INC)
LDFLAGS = $(FCFLAGS) -static
LIBS = $(LIBXC_LIB)/libxcf03.a \
$(LIBXC_LIB)/libxc.a \
$(LIBINT_LIB)/libderiv.a \
$(LIBINT_LIB)/libint.a \
$(FFTW_LIB)/libfftw3.a \
$(FFTW_LIB)/libfftw3_threads.a \
$(LIBXSMM_LIB)/libxsmmf.a \
$(LIBXSMM_LIB)/libxsmm.a \
$(LIBPATH)/liblapack.a \
$(LIBPATH)/libblas.a \
-ldl -lpthread