Changeset 4407


Ignore:
Timestamp:
04/29/19 16:07:34 (5 years ago)
Author:
jgipsl
Message:

Added argument -debug/-dev/-prod to easier change compile mode.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • CONFIG/UNIFORM/v7/ICOLMDZOR_v7/compile_icolmdzor.sh

    r4391 r4407  
    4343./compile_config [Options]  
    4444 
    45 Options: -full, -regular_latlon 
     45Options: -full, -regular_latlon, -debug, -dev, -prod(default) 
    4646 
    4747Example 1: Default compilation of DYNAMICO-LMDZ-ORCHIDEE with XIOS and IOIPSL 
    4848./compile_icolmdzor.sh 
    4949 
    50 Example 2: Default compilation with full recompilation of all components 
     50Example 2: Compile in debug mode 
     51./compile_icolmdzor.sh -debug 
     52 
     53Example 3: Default compilation with full recompilation of all components 
    5154./compile_icolmdzor.sh -full 
    5255 
    53 Example 3: Compilation of LMDZ in regular lat-lon for dimension 144x142x79.  
     56Example 4: Compilation of LMDZ in regular lat-lon for dimension 144x142x79.  
    5457The dimension can be changed to any other 3d dimension. DYNAMICO is also compiled as default. 
    5558./compile_icolmdzor.sh -regular_latlon 144x142x79 
     
    6972        "-optmode") 
    7073            optmode=$2 ; shift ; shift ;; 
    71          
     74 
     75        "-debug") 
     76            optmode=debug ; shift ;; 
     77 
     78        "-dev") 
     79            optmode=dev ; shift ;; 
     80 
     81        "-prod") 
     82            optmode=prod ; shift ;; 
     83 
    7284        "-regular_latlon") 
    7385            regular_latlon=yes ; 
Note: See TracChangeset for help on using the changeset viewer.