Changes between Version 11 and Version 12 of Doc/ComputingCenters/TGCC/IreneRedHat8


Ignore:
Timestamp:
03/20/23 10:45:27 (16 months ago)
Author:
snguyen
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • Doc/ComputingCenters/TGCC/IreneRedHat8

    v11 v12  
    185185svn co -r 1579 https://forge.ipsl.jussieu.fr/libigcm/svn/trunk/libIGCM libIGCM 
    186186}}} 
    187  * Modify config.card file section `[UserChoices]` to add environment file parameter :  
     187 * Modify config.card file section `[UserChoices]` to add environment file parameter:  
    188188{{{ 
    189189EnvFile=${SUBMIT_DIR}/../ARCH/arch.env 
    190190}}} 
    191191 
    192  
     192 * You may have to change the test of compiler version from `V17` to `V20` in `libIGCM/libIGCM_sys/libIGCM_sys_irene.ksh` to let the code execute: 
     193{{{ 
     194      if [ X${compilerVersion} = XV20 ]; then 
     195      IGCM_debug_Print 1 "IGCM_sys_active_variables : Using compiler version ${compilerVersion}"                                                                 
     196      ## EnvFile=/ccc/cont003/home/igcmg/igcmg/MachineEnvironment/irene/env_irene > /dev/null 2>&1 
     197      EnvFile=$( ccc_home -u igcmg)/MachineEnvironment/irene/env_irene > /dev/null 2>&1 
     198      else 
     199      IGCM_debug_Exit "This compiler version is not yet supported : ${compilerVersion}" 
     200      fi 
     201 
     202}}} 
     203