Changes between Version 38 and Version 39 of DevelopmentActivities/Branches/ORCHIDEE-MICT-IMBALANCE-P/Compile


Ignore:
Timestamp:
2018-07-05T17:00:17+02:00 (6 years ago)
Author:
ajornet
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • DevelopmentActivities/Branches/ORCHIDEE-MICT-IMBALANCE-P/Compile

    v38 v39  
    192192}}} 
    193193 
     194Modify Makefile to include "-otherexec"  
     195from 
     196{{{ 
     197... 
     198 # driver : Only compiling ORCHIDEE without linking to XIOS (with fcm method) 
     199driver : 
     200        (cd ../../modeles/ORCHIDEE ; ./makeorchidee_fcm        -j 8 -parallel mpi -prod -arch ${FCM_ARCH} -driver ; ) 
     201 
     202# driver_xios : Only compiling ORCHIDEE and linking to XIOS 1.0 (with fcm method) 
     203#               Note: For linking with XIOS 2.0 change -xios into -xios2 
     204driver_xios : 
     205        (cd ../../modeles/ORCHIDEE ; ./makeorchidee_fcm -xios2 -j 8 -parallel mpi -prod -arch ${FCM_ARCH} -driver ; ) 
     206}}} 
     207 
     208to 
     209{{{ 
     210... 
     211 # driver : Only compiling ORCHIDEE without linking to XIOS (with fcm method) 
     212driver : 
     213        (cd ../../modeles/ORCHIDEE ; ./makeorchidee_fcm        -j 8 -parallel mpi -prod -arch ${FCM_ARCH} -driver -otherexec ; ) 
     214 
     215# driver_xios : Only compiling ORCHIDEE and linking to XIOS 1.0 (with fcm method) 
     216#               Note: For linking with XIOS 2.0 change -xios into -xios2 
     217driver_xios : 
     218        (cd ../../modeles/ORCHIDEE ; ./makeorchidee_fcm -xios2 -j 8 -parallel mpi -prod -arch ${FCM_ARCH} -driver -otherexec ; ) 
     219}}} 
     220 
    194221Compile the whole model (IOIPSL, XIOS and Orchidee): 
    195222{{{