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.
Changeset 3922 for trunk/NEMOGCM/ARCH/arch-X64_CURIE.fcm – NEMO

Ignore:
Timestamp:
2013-06-14T12:37:08+02:00 (11 years ago)
Author:
smasson
Message:

trunk:compilation enhancements, see ticket #1117

File:
1 copied

Legend:

Unmodified
Added
Removed
  • trunk/NEMOGCM/ARCH/arch-X64_CURIE.fcm

    r3917 r3922  
    1 # Curie BULL at french TGCC, http://www-hpc.cea.fr/en/complexe/tgcc-curie.htm 
    2 # NCDF_INC    netcdf include file 
    3 # NCDF_LIB    netcdf library 
     1# Curie BULL at TGCC, http://www-hpc.cea.fr/en/complexe/tgcc-curie.htm 
     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# 
    415# FC          Fortran compiler command 
    516# FCFLAGS     Fortran compiler flags 
    617# FFLAGS      Fortran 77 compiler flags 
    718# LD          linker 
    8 # LDFLAGS     linker flags, e.g. -L<lib dir> if you have libraries in a 
     19# LDFLAGS     linker flags, e.g. -L<lib dir> if you have libraries 
    920# FPPFLAGS    pre-processing flags 
    1021# AR          assembler 
    1122# ARFLAGS     assembler flags 
    1223# MK          make 
    13 # USER_INC    additional include files for the compiler,  e.g. -I<include dir> 
    14 # USER_LIB    additional libraries to pass to the linker, e.g. -l<library> 
     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           /usr/local/netcdf-4.2_hdf5 
     32%HDF5_HOME           /usr/local/hdf5-1.8.8 
     33%XIOS_HOME           $WORKDIR/now/models/xios 
     34%OASIS_HOME          $WORKDIR/now/models/oa3mct 
    1535 
    16 %NCDF_INC            -I/usr/local/netcdf-4.2_hdf5/include 
    17 %NCDF_LIB            -L/usr/local/netcdf-4.2_hdf5/lib -L/usr/local/hdf5-1.8.8/lib -lnetcdff -lnetcdf -lhdf5_hl -lhdf5 -lhdf5 -lz -lcurl -lstdc++ 
    18 %XIOS_ROOT           /ccc/work/cont005/ra0542/massons/now/models/xios 
     36%NCDF_INC            -I%NCDF_HOME/include  
     37%NCDF_LIB            -L%NCDF_HOME/lib -lnetcdff -lnetcdf -L%HDF5_HOME/lib -lhdf5_hl -lhdf5 -lhdf5 
     38%XIOS_INC            -I%XIOS_HOME/inc  
     39%XIOS_LIB            -L%XIOS_HOME/lib -lxios 
     40%OASIS_INC           -I%OASIS_HOME/build/lib/mct -I%OASIS_HOME/build/lib/psmile.MPI1 
     41%OASIS_LIB           -L%OASIS_HOME/lib -lpsmile.MPI1 -lmct -lmpeu -lscrip 
     42 
    1943%FC                  mpif90 -c -cpp 
    2044# for Curie Fat Node 
     
    2650%FFLAGS              %FCFLAGS 
    2751%LD                  mpif90 
    28 %LDFLAGS 
     52%LDFLAGS             -lstdc++ 
    2953%FPPFLAGS            -P -C -traditional 
    3054%AR                  ar 
    3155%ARFLAGS             rs 
    3256%MK                  gmake 
    33 %USER_INC            -I%XIOS_ROOT/inc %NCDF_INC  
    34 %USER_LIB            -L%XIOS_ROOT/lib -lxios %NCDF_LIB -lstdc++ 
     57%USER_INC            %XIOS_INC %OASIS_INC %NCDF_INC 
     58%USER_LIB            %XIOS_LIB %OASIS_LIB %NCDF_LIB 
Note: See TracChangeset for help on using the changeset viewer.