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

source: branches/UKMO/dev_r5518_GO6_package/NEMOGCM/ARCH/arch-XC40_METO.fcm @ 8447

Last change on this file since 8447 was 6487, checked in by davestorkey, 8 years ago

Changes from nemo_v3_6_STABLE_copy branch.
Custom merge into /branches/UKMO/dev_r5518_GO6_package/NEMOGCM: r6237 cf. r5781 of /branches/UKMO/nemo_v3_6_STABLE_copy/NEMOGCM@6486

File size: 2.3 KB
Line 
1# compiler options for Archer CRAY XC-40 (using crayftn 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%NCDF_HOME           /opt/cray/netcdf-hdf5parallel/4.3.2/CRAY/83
34%HDF5_HOME           /opt/cray/hdf5-parallel/1.8.13/CRAY/83
35%XIOS_HOME           /projects/ocean/nemo/xios/xios_1.0_r629_20150625/XIOS
36
37%NCDF_INC            -I%NCDF_HOME/include -I%HDF5_HOME/include
38%NCDF_LIB            -L%HDF5_HOME/lib -L%NCDF_HOME/lib -lnetcdff -lnetcdf -lhdf5_hl -lhdf5 -lz
39%XIOS_INC            -I%XIOS_HOME/inc
40%XIOS_LIB            -L%XIOS_HOME/lib -lxios
41
42%CPP                 cpp
43%FC                  ftn
44%FCFLAGS             -emf -s real64 -s integer32  -O2 -hflex_mp=intolerant -Rb
45%FFLAGS              -emf -s real64 -s integer32  -O0 -hflex_mp=strict -Rb
46%LD                  ftn
47%FPPFLAGS            -P -E -traditional-cpp
48%LDFLAGS             -hbyteswapio
49%AR                  ar
50%ARFLAGS             -r
51%MK                  gmake
52
53%USER_INC            %XIOS_INC
54%USER_LIB            %XIOS_LIB
55
56%CC                  cc
57%CFLAGS              -O0
Note: See TracBrowser for help on using the repository browser.