Changeset 1530 for trunk/LMDZ.COMMON/makelmdz
- Timestamp:
- Apr 6, 2016, 8:51:34 AM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/LMDZ.COMMON/makelmdz
r1521 r1530 363 363 fi 364 364 365 if [[ "$parallel" != "none" && \ 366 ( "$code" == "newstart" || "$code" == "start2archive" ) ]] 367 then 368 echo "newstart or start2archive utilities should be run in serial!" 369 echo " Compile without -parallel [mpi|omp|mpi_omp] option!" 370 exit 371 fi 372 365 373 if [[ "$parallel" == "none" ]] 366 374 then … … 580 588 INCLUDE="$INCLUDE "'-I$(LIBF)/dyn2d' 581 589 elif (( $dimc == 1 )) ; then 590 ## Sanity check: 1D models should be used in serial 591 if [[ $parallel != "none" ]] 592 then 593 echo "Error: a 1D model should not be compiled with " 594 echo " -parallel [mpi|omp|mpi_omp] option!" 595 exit 596 fi 582 597 echo pas de dynamique 583 598 src_dirs="$src_dirs phy${physique}/dyn1d"
Note: See TracChangeset
for help on using the changeset viewer.