1 | # mpi ifort compiler options for ATHENA using XIOS parallel writer server |
---|
2 | # |
---|
3 | # |
---|
4 | # NCDF_HOME root directory containing lib and include subdirectories for netcdf4 |
---|
5 | # HDF5_HOME root directory containing lib and include subdirectories for HDF5 |
---|
6 | # XIOS_HOME root directory containing lib for XIOS |
---|
7 | # OASIS_HOME root directory containing lib for OASIS |
---|
8 | # |
---|
9 | # NCDF_INC netcdf4 include file |
---|
10 | # NCDF_LIB netcdf4 library |
---|
11 | # XIOS_INC xios include file (taken into accound only if key_iomput is activated) |
---|
12 | # XIOS_LIB xios library (taken into accound only if key_iomput is activated) |
---|
13 | # OASIS_INC oasis include file (taken into accound only if key_oasis3 is activated) |
---|
14 | # OASIS_LIB oasis library (taken into accound only if key_oasis3 is activated) |
---|
15 | # |
---|
16 | # FC Fortran compiler command |
---|
17 | # FCFLAGS Fortran compiler flags |
---|
18 | # FFLAGS Fortran 77 compiler flags |
---|
19 | # LD linker |
---|
20 | # LDFLAGS linker flags, e.g. -L<lib dir> if you have libraries |
---|
21 | # FPPFLAGS pre-processing flags |
---|
22 | # AR assembler |
---|
23 | # ARFLAGS assembler flags |
---|
24 | # MK make |
---|
25 | # USER_INC complete list of include files |
---|
26 | # USER_LIB complete list of libraries to pass to the linker |
---|
27 | # CC C compiler used to compile conv for AGRIF |
---|
28 | # CFLAGS compiler flags used with CC |
---|
29 | # |
---|
30 | # Note that: |
---|
31 | # - unix variables "$..." are accpeted and will be evaluated before calling fcm. |
---|
32 | # - fcm variables are starting with a % (and not a $) |
---|
33 | # |
---|
34 | |
---|
35 | # required modules |
---|
36 | # module load INTEL/intel_xe_2013 NETCDF/netcdf-4.3_parallel NETCDF/parallel-netcdf-1.3.1 HDF5/hdf5-1.8.11_parallel |
---|
37 | |
---|
38 | # Environment variables set by user. Others should automatically define when loading modules. |
---|
39 | #export XIOS=/users/home/models/nemo/xios |
---|
40 | #export HDF5=/users/home/opt/hdf5/hdf5-1.8.11_parallel |
---|
41 | #export NETCDF=/users/home/opt/netcdf/netcdf-4.3_parallel |
---|
42 | |
---|
43 | %NCDF_INC -I${NETCDF}/include |
---|
44 | %NCDF_LIB -L${NETCDF}/lib -lnetcdff -lnetcdf |
---|
45 | %HDF5_INC -I${HDF5}/include |
---|
46 | %HDF5_LIB -L${HDF5}/lib -lhdf5_hl -lhdf5 |
---|
47 | %XIOS_INC -I${XIOS}/inc |
---|
48 | %XIOS_LIB -L${XIOS}/lib -lxios |
---|
49 | %CPP cpp |
---|
50 | %FC mpiifort |
---|
51 | %FCFLAGS -r8 -O3 -xHost -fp-model source -traceback |
---|
52 | %FFLAGS %FCFLAGS |
---|
53 | %LD mpiifort |
---|
54 | %FPPFLAGS -P -C -traditional |
---|
55 | %LDFLAGS -lstdc++ -lz -lgpfs -lcurl |
---|
56 | %AR ar |
---|
57 | %ARFLAGS -r |
---|
58 | %MK gmake |
---|
59 | %USER_INC %XIOS_INC %NCDF_INC %HDF5_INC |
---|
60 | %USER_LIB %XIOS_LIB %NCDF_LIB %HDF5_LIB |
---|
61 | %CC icc |
---|
62 | %CFLAGS -O0 |
---|