New URL for NEMO forge!   http://forge.nemo-ocean.eu

Since March 2022 along with NEMO 4.2 release, the code development moved to a self-hosted GitLab.
This present forge is now archived and remained online for history.
arch-ifort_belenos_xios.fcm in utils/build/arch/MERCATOR – NEMO

source: utils/build/arch/MERCATOR/arch-ifort_belenos_xios.fcm @ 13730

Last change on this file since 13730 was 13730, checked in by gsamson, 3 years ago

add Meteo-France new HPC (Belenos/Taranis?) arch files for r4.0-HEAD

File size: 2.8 KB
Line 
1# compiler options for Belenos/Taranis (using intel compiler)
2#
3# NCDF_HOME   root directory containing lib and include subdirectories for netcdf4
4# HDF5_HOME   root directory containing lib and include subdirectories for HDF5
5# XIOS_HOME   root directory containing lib for XIOS
6# OASIS_HOME  root directory containing lib for OASIS
7#
8# NCDF_INC    netcdf4 include file
9# NCDF_LIB    netcdf4 library
10# XIOS_INC    xios include file    (taken into accound only if key_iomput is activated)
11# XIOS_LIB    xios library         (taken into accound only if key_iomput is activated)
12# OASIS_INC   oasis include file   (taken into accound only if key_oasis3 is activated)
13# OASIS_LIB   oasis library        (taken into accound only if key_oasis3 is activated)
14#
15# FC          Fortran compiler command
16# FCFLAGS     Fortran compiler flags
17# FFLAGS      Fortran 77 compiler flags
18# LD          linker
19# LDFLAGS     linker flags, e.g. -L<lib dir> if you have libraries
20# FPPFLAGS    pre-processing flags
21# AR          assembler
22# ARFLAGS     assembler flags
23# MK          make
24# USER_INC    complete list of include files
25# USER_LIB    complete list of libraries to pass to the linker
26# CC          C compiler used to compile conv for AGRIF
27# CFLAGS      compiler flags used with CC
28#
29# Note that:
30#  - unix variables "$..." are accpeted and will be evaluated before calling fcm.
31#  - fcm variables are starting with a % (and not a $)
32#
33#---------------------------------------------------------------------------------------------
34#---------------------------------------------------------------------------------------------
35# All NETCDF and HDF paths are empty as they are automatically defined through environment
36# variables by the load of modules
37#---------------------------------------------------------------------------------------------
38#---------------------------------------------------------------------------------------------
39#
40#
41
42%NCDF_INC            -I${NETCDF_INC}
43%NCDF_LIB            -L${NETCDF_LIB} -lnetcdff -lnetcdf -L${HDF5_LIB} -lhdf5_hl -lhdf5
44%XIOS_INC            -I${XIOS_INC}
45%XIOS_LIB            -L${XIOS_LIB} -lxios -lstdc++
46%OASIS_INC           -I${OASIS_DIR}/build/lib/mct -I${OASIS_DIR}/build/lib/psmile.MPI1
47%OASIS_LIB           -L${OASIS_DIR}/lib -lpsmile.MPI1 -lmct -lmpeu -lscrip
48
49%CPP                 cpp
50%FC                  mpiifort -c -cpp
51%FCFLAGS             -i4 -r8 -O3 -fp-model strict -march=core-avx2 -fno-alias -align array64byte
52%FFLAGS              %FCFLAGS
53%LD                  mpiifort
54%LDFLAGS             
55%FPPFLAGS            -P -traditional
56%AR                  ar
57%ARFLAGS             rs
58%MK                  gmake
59%USER_INC            %XIOS_INC %OASIS_INC %NCDF_INC
60%USER_LIB            %XIOS_LIB %OASIS_LIB %NCDF_LIB
61
62%CC                  cc
63%CFLAGS              -O0
Note: See TracBrowser for help on using the repository browser.