Ignore:
Timestamp:
Apr 17, 2017, 4:10:07 PM (8 years ago)
Author:
emillour
Message:

Common dynamics/framework:
Removed some obsolete arch files.
Reorganization of the way paths to external libraries are handles by makelmdz_fcm and makelmdz. This will ease interfacing with Dynamico which follows simillar rules with respect to a given external library ,e.g. for SOMELIBRARY, in the arch.path file:
SOMELIBRARY_LIBDIR="-L/path/to/the/library/libdir -L/possible/other/required/path"
SOMELIBRARY_LIB"-lsomelib -lsomeotherrequiredlib"
SOMELIBRARY_INCDIR"-I/path/to/the/library/incdir -I/possible/other/required/include/path"
EM

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/LMDZ.COMMON/arch/arch-linux-ifort.path

    r1622 r1695  
    1 NETCDF_LIBDIR="-L/d2/emlmd/netcdf64-4.0.1_ifort/lib -lnetcdf"
    2 NETCDF_INCDIR=-I/d2/emlmd/netcdf64-4.0.1_ifort/include
    3 IOIPSL_INCDIR=/u/sllmd/LMDZ5/ioipsl/modipsl/lib-ifort
    4 IOIPSL_LIBDIR=/u/sllmd/LMDZ5/ioipsl/modipsl/lib-ifort
    5 XIOS_INCDIR=$LMDGCM/../XIOS/inc
    6 XIOS_LIBDIR=$LMDGCM/../XIOS/lib
     1ROOT=$PWD
     2
     3NETCDF_LIBDIR="-L/d2/emlmd/netcdf64-4.0.1_ifort/lib"
     4NETCDF_LIB="-lnetcdf"
     5NETCDF_INCDIR="-I/d2/emlmd/netcdf64-4.0.1_ifort/include"
     6
     7IOIPSL_INCDIR="-I/u/sllmd/LMDZ5/ioipsl/modipsl/lib-ifort"
     8IOIPSL_LIBDIR="-L/u/sllmd/LMDZ5/ioipsl/modipsl/lib-ifort"
     9IOIPSL_LIB="-lioipsl"
     10
     11XIOS_INCDIR="-I$ROOT/../XIOS/inc"
     12XIOS_LIBDIR="-L$ROOT/../XIOS/lib"
     13XIOS_LIB="-lxios -lstdc++"
     14
Note: See TracChangeset for help on using the changeset viewer.