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-CETO_INTEL_NOSIGNEDZERO_DEBUG.fcm in NEMO/branches/UKMO/AMM15_v3_6_STABLE_new_ersem/NEMOGCM/ARCH – NEMO

source: NEMO/branches/UKMO/AMM15_v3_6_STABLE_new_ersem/NEMOGCM/ARCH/arch-CETO_INTEL_NOSIGNEDZERO_DEBUG.fcm

Last change on this file was 15480, checked in by jcastill, 3 years ago

Changes as in the git branch NEMO-FABMv1-ERSEM

File size: 2.8 KB
Line 
1# typicla compiler options for PML workstations using the GNU 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#
27# Note that:
28#  - unix variables "$..." are accpeted and will be evaluated before calling fcm.
29#  - fcm variables are starting with a % (and not a $)
30#
31%NCDF_HOME           /gpfs1/apps/netcdf/intelmpi
32%HDF5_HOME           /gpfs1/apps/hdf5/intelmpi
33# set your XIOS_HOME environment variable or replace with appropriate path:
34%XIOS_HOME           $XIOS_HOME
35%FABM_HOME           $FABM_HOME
36#OASIS_HOME         
37
38%NCDF_INC            -I/gpfs1/apps/netcdf/intelmpi/include
39%NCDF_LIB            -L/gpfs1/apps/netcdf/intelmpi/lib -L/gpfs1/apps/hdf5/intelmpi/lib -lnetcdff -lnetcdf -lhdf5_hl -lhdf5 -lz
40%XIOS_INC            -I%XIOS_HOME/inc
41%XIOS_LIB            -L%XIOS_HOME/lib -lxios
42#OASIS_INC           -I%OASIS_HOME/build/lib/mct -I%OASIS_HOME/build/lib/psmile.MPI1
43#OASIS_LIB           -L%OASIS_HOME/lib -lpsmile.MPI1 -lmct -lmpeu -lscrip
44
45%FABM_INC            -I%FABM_HOME/include
46#%FABM_LIB            -L%FABM_HOME/lib -lfabm
47%FABM_LIB            -L%FABM_HOME/lib -lfabm
48
49%CPP               cpp
50%FC                  mpiifort
51#%FCFLAGS             -fdefault-real-8 -O3 -funroll-all-loops -fcray-pointer -ffree-line-length-none
52%FCFLAGS             -g -O0 -traceback -fpe0 -r8 -i4
53%FFLAGS              %FCFLAGS
54%LD                  %FC
55# F2003 compliant compilers require key_nosignedzero:
56%FPPFLAGS            -P -C -nostdinc -Dkey_nosignedzero %FABM_INC
57%LDFLAGS      -lstdc++
58%AR                  ar
59%ARFLAGS             -rs
60%MK                  make
61%USER_INC            %XIOS_INC %NCDF_INC %FABM_INC
62%USER_LIB            %XIOS_LIB %NCDF_LIB %FABM_LIB
63#%USER_INC            %XIOS_INC %OASIS_INC %NCDF_INC %FABM_INC
64#%USER_LIB            %XIOS_LIB %OASIS_LIB %NCDF_LIB %FABM_LIB
Note: See TracBrowser for help on using the repository browser.