Changeset 2358 for LMDZ5/trunk/makelmdz_fcm
- Timestamp:
- Sep 4, 2015, 9:10:16 AM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
LMDZ5/trunk/makelmdz_fcm
r2336 r2358 34 34 job=1 35 35 full='' 36 libphy=false 36 37 37 38 LMDGCM=`/bin/pwd` … … 97 98 [-j n] : active parallel compiling on ntask 98 99 [-full] : full recompiling 100 [-libphy] : only compile physics package (no dynamics or main program) 99 101 [-fcm_path path] : path to the fcm tool (default: tools/fcm/bin) 100 102 [-ext_src path] : path to an additional set of routines to compile with the model … … 171 173 "-ext_src") 172 174 EXT_SRC=$2 ; shift ; shift ;; 175 173 176 "-j") 174 177 job=$2 ; shift ; shift ;; 178 175 179 "-full") 176 180 full="-full" ; shift ;; 181 182 "-libphy") 183 libphy="true" ; shift ;; 177 184 178 185 "-arch") … … 536 543 fi 537 544 545 if [[ $libphy == "true" ]] 546 then 547 # special case where we compile only the physics 548 DYN=$LMDGCM/.void_dir 549 DYN_COMMON_PATH=$LMDGCM/.void_dir 550 FILTRE_PATH=$LMDGCM/.void_dir 551 DYN_PHYS_PATH=$LMDGCM/.void_dir 552 DYN_PHYS_SUB_PATH=$LMDGCM/.void_dir 553 #and there is no main program to generate 554 code="" 555 SUFF_NAME="" 556 else 557 SUFF_NAME=${SUFF_NAME}.e 558 fi 559 538 560 cd $LMDGCM 539 561 config_fcm="config.fcm" … … 584 606 rm -rf config 585 607 ln -s $LIBOGCM/${arch}${SUFF_NAME}/.config config 586 ln -s $LIBOGCM/${arch}${SUFF_NAME}/.config/ tmptmp_src608 ln -s $LIBOGCM/${arch}${SUFF_NAME}/.config/ppsrc tmp_src 587 609 588 610
Note: See TracChangeset
for help on using the changeset viewer.