Changes between Version 36 and Version 37 of Doc/FAQ


Ignore:
Timestamp:
03/14/16 14:23:25 (8 years ago)
Author:
snguyen
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • Doc/FAQ

    v36 v37  
    654654## How do I copy a model installation directory instead of downloading from the forge ? ## 
    655655 
    656 In your workdir copy the target installation : 
    657  
    658 [wiki:DocLfaq#HowdoIuseadifferentversionoflibIGCM? toto] 
     656In your workdir, copy the target installation:[[BR]] 
     657`cp -r OldInstall NewInstall`. 
     658 
     659You will need to regenerate the makefiles to account for the new path and recompile the executable (anyway you probably copied the installation to make modifications to the source). 
     660 
     661Clean the libraries and executables:[[BR]] 
     662in `NewInstall/modipsl/config/[YourConfig]` do a `gmake clean`. 
     663 
     664Generate the new makefiles:[[BR]] 
     665in `NewInstall/modipsl/util` do a `./ins_make`. 
     666 
     667Update your libIGCM installation:[[BR]] 
     668either install the latest version of libIGCM by following these [wiki:DocLfaq#HowdoIuseadifferentversionoflibIGCM explanations],[[BR]] 
     669or remove and regenerate the .job files in your libIGCM directory as follows.[[BR]] 
     670 
     671Do a `rm NewInstall/modipsl/libIGCM/*.job`.[[BR]] 
     672 
     673Prepare a new experiment as usual and launch `ins_job` to generate the `.job` files in your `libIGCM` directory and your experiment directory.[[BR]] 
     674Depending on your `libIGCM` version you will have to launch `NewInstall/modipsl/libIGCM/ins_job` or `NewInstall/modipsl/util/ins_job` for older versions. 
     675 
     676Check that the `.job` files are properly generated in `NewInstall/modipsl/libIGCM/` and you are set. 
     677   
     678