Ignore:
Timestamp:
01/18/24 16:16:37 (5 months ago)
Author:
jgipsl
Message:

Link OASIS library to ORCHIDEE executables (offline drivers) when XIOS is compiled with OASIS. This modification needs ORCHIDEE_2 revision 8387 or ORCHIDEE_4(trunk) revision 8388 or higher. See also ticket https://forge.ipsl.jussieu.fr/orchidee/ticket/968

File:
1 edited

Legend:

Unmodified
Added
Removed
  • CONFIG/UNIFORM/v7/IPSLCM7/compile_ipslcm7.sh

    r6722 r6725  
    328328fi 
    329329 
    330 echo    ./makeorchidee_fcm -j 8 -xios -parallel $parallel -$optmode -arch ${fcm_arch} -arch_path $arch_path $full_orch $orchdriver >> $outfile  
    331         ./makeorchidee_fcm -j 8 -xios -parallel $parallel -$optmode -arch ${fcm_arch} -arch_path $arch_path $full_orch $orchdriver >> $outfile 2>&1 
     330if [ $compoasis == y ] ; then 
     331    # For this case, XIOS library needs to be linked with OASIS library 
     332    argoasis="-linkwithoasis" 
     333else 
     334    argoasis="" 
     335fi 
     336 
     337echo    ./makeorchidee_fcm -j 8 -xios -parallel $parallel -$optmode -arch ${fcm_arch} -arch_path $arch_path ${argoasis} $full_orch $orchdriver >> $outfile  
     338        ./makeorchidee_fcm -j 8 -xios -parallel $parallel -$optmode -arch ${fcm_arch} -arch_path $arch_path ${argoasis} $full_orch $orchdriver >> $outfile 2>&1 
    332339# Test if compiling finished 
    333340if [[ $? != 0 ]] ; then 
Note: See TracChangeset for help on using the changeset viewer.