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

source: branches/UKMO/dev_r5518_DMP_TOOLS/NEMOGCM/ARCH/arch-X64_ADA.fcm @ 10778

Last change on this file since 10778 was 5385, checked in by cetlod, 9 years ago

merge 2015/dev_r5204_CNRS_PISCES_dcy branch into the trunk, see ticket #1532

File size: 2.4 KB
Line 
1# Ada  IBM x3750 at french IDRIS, http://www.idris.fr/ada/ada-hw-ada.html
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           /smplocal/pub/NetCDF/4.1.3/mpi
32%HDF5_HOME           /smplocal/pub/HDF5/1.8.9/par
33%XIOS_HOME           $WORKDIR/XIOS
34####%OASIS_HOME          $WORKDIR/oasis3-mct/BLD
35%OASIS_HOME          /not/defined
36
37%NCDF_INC            -I%NCDF_HOME/include
38%NCDF_LIB            -L%NCDF_HOME/lib -Bstatic -lnetcdff -lnetcdf -Bdynamic -L%HDF5_HOME/lib -Bstatic -lhdf5hl_fortran -lhdf5_hl -lhdf5_fortran -lhdf5 -Bdynamic -lz
39%XIOS_INC            -I%XIOS_HOME/inc
40%XIOS_LIB            -L%XIOS_HOME/lib -lxios
41%OASIS_INC           -I%OASIS_HOME/build/lib/mct -I%OASIS_HOME/build/lib/psmile.MPI1
42%OASIS_LIB           -L%OASIS_HOME/lib -lpsmile.MPI1 -lmct -lmpeu -lscrip
43
44%CPP               cpp
45%FC                  mpiifort -c -cpp
46%FCFLAGS             -DCPP_PARA -i4 -r8 -O3 -xAVX -fp-model precise
47%FFLAGS              %FCFLAGS
48%LD                  mpiifort
49%LDFLAGS             -lstdc++
50%FPPFLAGS            -P -C -traditional
51%AR                  ar
52%ARFLAGS             rs
53%MK                  gmake
54%USER_INC            %XIOS_INC %OASIS_INC %NCDF_INC
55%USER_LIB            %XIOS_LIB %OASIS_LIB %NCDF_LIB
Note: See TracBrowser for help on using the repository browser.