Changes between Initial Version and Version 1 of DevelopmentActivities/Branches/ORCHIDEE-MICT-IMBALANCE-P/Compile


Ignore:
Timestamp:
2016-01-07T14:49:47+01:00 (8 years ago)
Author:
ajornet
Comment:

--

Legend:

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

    v1 v1  
     1= How to compile MICT = 
     2 
     3In order to compile orchidee 
     4 
     5Go to the model source code: 
     6 
     7{{{ 
     8cd YOURPATH/modipsl/modeles/ORCHIDEE 
     9}}} 
     10 
     11Install all makefiles 
     12 
     13{{{ 
     14../../util/ins_make 
     15}}} 
     16 
     17Go to the IOIPSL folder 
     18 
     19{{{ 
     20cd ../IOIPSL/src 
     21}}} 
     22 
     23Compile IOIPSL 
     24 
     25{{{ 
     26gmake  
     27}}} 
     28 
     29Go to the models source code folder again 
     30 
     31{{{ 
     32cd ../../ORCHIDEE 
     33}}} 
     34 
     35Compile Orchidee 
     36 
     37{{{ 
     38./makeorchidee_fcm  -parallel mpi -arch X64_CURIE -driver -debug -j 8 
     39}}} 
     40Replace -arch MACHINE with the machine you are working with. Find more information in makeorchidee_fcm -h command. 
     41 
     42 
     43Note: the use of gmake produces an error due to dependencies. For this reason, it is only required to compile orchidee libraries (ioipsl, ...). 
     44