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 5097 for branches – NEMO

Changeset 5097 for branches


Ignore:
Timestamp:
2015-02-20T10:40:36+01:00 (9 years ago)
Author:
timgraham
Message:

Update to head of trunk (changes to makenemo and INGV arch file only)

Location:
branches/2014/dev_r4650_UKMO3_masked_damping/NEMOGCM
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • branches/2014/dev_r4650_UKMO3_masked_damping/NEMOGCM/ARCH/INGV/arch-IBM_EKMAN_INGV.fcm

    r5086 r5097  
    1818%NCDF_INC            -I/srv/lib/netcdf-x/include 
    1919%NCDF_LIB            -L/srv/lib/netcdf-x/lib -lnetcdff -lnetcdf -lhdf5_hl -lhdf5 -lcurl -lstdc++ 
    20 %XIOS_ROOT           /home/delrosso/XIOS_447/trunk 
     20%XIOS_ROOT           /home/delrosso/XIOS_482/XIOS 
    2121%MPI_INTEL           -I/srv/intel/impi/4.1.0.024/include 
    2222%CPP                 cpp 
    2323%FC                  mpiifort 
    24 %FCFLAGS             -r8 -O3 -g -traceback  
     24%FCFLAGS             -r8 -O1 -g -traceback -fp-model precise 
    2525%FFLAGS              %FCFLAGS 
    2626%LD                  mpiifort 
    27 %LDFLAGS              
     27%LDFLAGS 
    2828%FPPFLAGS            -P -C -traditional 
    2929%AR                  ar 
  • branches/2014/dev_r4650_UKMO3_masked_damping/NEMOGCM/CONFIG/makenemo

    r5090 r5097  
    200200       ;; 
    201201   add_key) 
    202             [ ! -z $2 ] && { list_add_key=$2; export ${list_add_key}; } 
     202       # Checking void argument 
     203       [ ! -z $2 ] && { list_add_key=$2; export ${list_add_key}; } 
    203204       shift 
    204205       ;; 
    205206   del_key) 
    206             [ ! -z $2 ] && { list_del_key=$2; export ${list_del_key}; } 
     207       # Checking void argument 
     208       [ ! -z $2 ] && { list_del_key=$2; export ${list_del_key}; } 
    207209       shift 
    208210       ;; 
     
    314316fi 
    315317 
    316 #- At this stage new configuration has been added, 
    317 #- We add or remove keys 
    318 if [ ${#list_add_key} -ne 0 ] ; then 
    319     . ${COMPIL_DIR}/Fadd_keys.sh ${NEW_CONF} add_key ${list_add_key} 
    320 fi 
    321  
    322 if [ ${#list_del_key} -ne 0 ] ; then 
    323     . ${COMPIL_DIR}/Fdel_keys.sh ${NEW_CONF} del_key ${list_del_key} 
    324 fi 
     318#- At this stage new configuration has been added, we add or remove keys 
     319[ ! -z ${list_add_key} ] && { . ${COMPIL_DIR}/Fadd_keys.sh ${NEW_CONF} add_key ${list_add_key}; } 
     320[ ! -z ${list_del_key} ] && { . ${COMPIL_DIR}/Fdel_keys.sh ${NEW_CONF} del_key ${list_del_key}; } 
    325321 
    326322#- check that all keys are really existing... 
Note: See TracChangeset for help on using the changeset viewer.