Changeset 1411
- Timestamp:
- 08/29/17 20:47:24 (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/libIGCM/libIGCM_comp/libIGCM_comp.ksh
r1409 r1411 967 967 [ -f ${RUN_DIR}/compiler.txt ] && rm -f ${RUN_DIR}/compiler.txt 968 968 969 typeset comp ExeNameIn ExeNameOut 969 typeset comp ExeNameIn ExeNameOut byPass 970 970 typeset compilerNmbr compilerUnit compilerFull 971 byPass=false 971 972 for comp in ${config_ListOfComponents[*]} ; do 972 973 # Define component … … 999 1000 # Save it 1000 1001 echo $compilerFull >> ${RUN_DIR}/compiler.txt 1002 [ X${compilerFull} = X ] && byPass=true 1001 1003 IGCM_debug_Print 1 "${RUN_DIR}/${ExeNameOut} has been compiled with ${compilerFull}" 1002 1004 fi … … 1006 1008 compilerUnit=$( cat ${RUN_DIR}/compiler.txt | sort | uniq -c ) 1007 1009 1008 if [ ${compilerNmbr} -ne ${compilerUnit} ]; then1010 if ( [ ${compilerNmbr} -ne ${compilerUnit} ] && [ ! X${byPass} = Xtrue ] ); then 1009 1011 IGCM_debug_Exit "Binaries has not been compiled with the same compiler version" 1010 1012 fi
Note: See TracChangeset
for help on using the changeset viewer.