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_athena_xios.fcm in branches/2013/dev_MERGE_2013/NEMOGCM/ARCH/CMCC – NEMO

source: branches/2013/dev_MERGE_2013/NEMOGCM/ARCH/CMCC/arch-ifort_athena_xios.fcm @ 4310

Last change on this file since 4310 was 4230, checked in by cetlod, 10 years ago

dev_LOCEAN_CMCC_INGV_2013 : merge LOCEAN & CMCC_INGV branches, see ticket #1182

File size: 2.0 KB
Line 
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#
28# Note that:
29#  - unix variables "$..." are accpeted and will be evaluated before calling fcm.
30#  - fcm variables are starting with a % (and not a $)
31#
32
33
34
35%NCDF_INC            -I/users/home/sco003/mylib/include
36%NCDF_LIB            -L/users/home/sco003/mylib/lib -lnetcdff -lnetcdf -lhdf5_hl -lhdf5
37%XIOS_INC            -I/users/home/sco003/XIOS/inc
38%XIOS_LIB            -L/users/home/sco003/XIOS/lib  -lxios
39%FC                  mpiifort
40%FCFLAGS         -r8 -O3 -xHost -fp-model source -traceback
41%FFLAGS       -r8 -O3 -xHost -fp-model source -traceback
42%LD                  mpiifort
43%FPPFLAGS            -P -C -traditional
44%LDFLAGS             -lstdc++ -lz -lgpfs -lcurl
45%AR                  ar
46%ARFLAGS             -r
47%MK                  gmake
48%USER_INC            %XIOS_INC %NCDF_INC
49%USER_LIB            %XIOS_LIB %NCDF_LIB
Note: See TracBrowser for help on using the repository browser.