-
Notifications
You must be signed in to change notification settings - Fork 16
/
make.settings
38 lines (25 loc) · 1.05 KB
/
make.settings
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
34
35
36
37
# Set the ADIOS2 installation directory
ADIOS2_DIR=/opt/adios2
# Set the MPI compilers if available
MPICC=mpicc
MPICXX=mpicxx
MPIFC=mpif90
# Set the serial compilers
CC=gcc
CXX=g++
FC=gfortran
######################################################
# These settings below should not need to be edited #
######################################################
CXX_MPI_FLAGS=`${ADIOS2_DIR}/bin/adios2-config --cxx-flags -m`
CXX_MPI_LDFLAGS=`${ADIOS2_DIR}/bin/adios2-config --cxx-libs -m`
CXX_FLAGS=`adios2-config --cxx-flags -s`
CXX_LDFLAGS=`adios2-config --cxx-libs -s`
C_MPI_FLAGS=`${ADIOS2_DIR}/bin/adios2-config --c-flags -m`
C_MPI_LDFLAGS=`${ADIOS2_DIR}/bin/adios2-config --c-libs -m`
C_FLAGS=`${ADIOS2_DIR}/bin/adios2-config --c-flags -s`
C_LDFLAGS=`${ADIOS2_DIR}/bin/adios2-config --c-libs -s`
F90_MPI_FLAGS=`${ADIOS2_DIR}/bin/adios2-config --fortran-flags -m`
F90_MPI_LDFLAGS=`${ADIOS2_DIR}/bin/adios2-config --fortran-libs -m`
F90_FLAGS=`${ADIOS2_DIR}/bin/adios2-config --fortran-flags -s`
F90_LDFLAGS=`${ADIOS2_DIR}/bin/adios2-config --fortran-libs -s`