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-ALTIX_NAUTILUS_MPT.fcm in branches/2015/nemo_v3_6_STABLE/NEMOGCM/ARCH – NEMO

source: branches/2015/nemo_v3_6_STABLE/NEMOGCM/ARCH/arch-ALTIX_NAUTILUS_MPT.fcm @ 9295

Last change on this file since 9295 was 6204, checked in by cetlod, 8 years ago

back the nemo_v3_6_STABLE_XIOS2 branch into 3_6_STABLE, including bugfixes, XIOS2 and new AGRIF

File size: 2.8 KB
RevLine 
[2364]1# ifort compiler options for NOCS ALTIX cluster nautilus using NetCDF4 libraries
[3922]2#
[2364]3# NCDF_HOME   root directory containing lib and include subdirectories for netcdf4
4# HDF5_HOME   root directory containing lib and include subdirectories for HDF5
[3736]5# XIOS_HOME   root directory containing lib for XIOS
[3922]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#
[2364]15# FC          Fortran compiler command
16# FCFLAGS     Fortran compiler flags
17# FFLAGS      Fortran 77 compiler flags
18# LD          linker
[3922]19# LDFLAGS     linker flags, e.g. -L<lib dir> if you have libraries
[2364]20# FPPFLAGS    pre-processing flags
21# AR          assembler
22# ARFLAGS     assembler flags
23# MK          make
[3922]24# USER_INC    complete list of include files
25# USER_LIB    complete list of libraries to pass to the linker
[6204]26# CC          C compiler used to compile conv for AGRIF
27# CFLAGS      compiler flags used with CC
[3922]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%HDF5_HOME           /fibre/omfman/NETCDF_PAR
[3736]34%NCDF_HOME           /fibre/omfman/NETCDF_PAR
35%XIOS_HOME           /fibre/omfman/XIOS
[3922]36%OASIS_HOME         
37
[2364]38%NCDF_INC            -I%NCDF_HOME/include -I%HDF5_HOME/include
[3922]39# Note use of -Bstatic because the library root directories may not be accessible to the back-end compute nodes
40%NCDF_LIB            -L%HDF5_HOME/lib -L%NCDF_HOME/lib -Bstatic -lnetcdff -lnetcdf -lhdf5_hl -lhdf5 -Bdynamic -lz
[3736]41%XIOS_INC            -I%XIOS_HOME/inc
42%XIOS_LIB            -L%XIOS_HOME/lib -lxios
[3922]43%OASIS_INC           -I%OASIS_HOME/build/lib/mct -I%OASIS_HOME/build/lib/psmile.MPI1
44%OASIS_LIB           -L%OASIS_HOME/lib -lpsmile.MPI1 -lmct -lmpeu -lscrip
45
[4865]46%CPP               cpp
[3116]47%FC                  ifort
[3631]48%FCFLAGS             -r8 -O3 -fp-model precise -xT -ip -vec-report0
49%FFLAGS              -r8 -O3 -fp-model precise -xT -ip -vec-report0
[3116]50%LD                  ifort
[2364]51%FPPFLAGS            -P -C -traditional
[4245]52%LDFLAGS             -lmpi -lstdc++ -lcurl
[2364]53%AR                  ar
54%ARFLAGS             -r
55%MK                  gmake
[3922]56%USER_INC            %XIOS_INC %OASIS_INC %NCDF_INC
57%USER_LIB            %XIOS_LIB %OASIS_LIB %NCDF_LIB
[2364]58
59# - if debugging use these flags
60#FCFLAGS             -g -traceback -r8 -O0 -xT -ip -vec-report0
61#FFLAGS              -g -traceback -r8 -O0 -xT -ip -vec-report0
[6204]62
63%CC                  cc
64%CFLAGS              -O0
Note: See TracBrowser for help on using the repository browser.