[Dart-dev] DART/branches Revision: 11697

dart at ucar.edu dart at ucar.edu
Fri Jun 2 15:59:59 MDT 2017


nancy at ucar.edu
2017-06-02 15:59:59 -0600 (Fri, 02 Jun 2017)
176
add lorenz_96_2scale to list of models to test;
allow -default as the mpi flag, which compiles
models using the quickbuild default (instead of
forcing all -mpi or all -nompi)




Modified: DART/branches/rma_trunk/models/buildall.csh
===================================================================
--- DART/branches/rma_trunk/models/buildall.csh	2017-06-02 21:55:32 UTC (rev 11696)
+++ DART/branches/rma_trunk/models/buildall.csh	2017-06-02 21:59:59 UTC (rev 11697)
@@ -20,6 +20,8 @@
     set usingmpi=default
   else if ( "$argv[1]" == "-nompi" ) then
     set usingmpi=no
+  else if ("$argv[1]" == "-default") then
+    setenv usingmpi -1
   else
     echo "Unrecognized argument to $0: $argv[1]"
     echo "Usage: $0 [ -mpi | -nompi | -default ]"
@@ -40,6 +42,9 @@
 else if ( "$usingmpi" == "no" ) then
   echo "Will NOT be building with MPI enabled"
   set QUICKBUILD_ARG='-nompi'
+elseif ( $usingmpi == -1 ) then
+  echo "Will be building with the default MPI settings"
+  setenv QUICKBUILD_ARG ''
 else
   echo "Internal error: unrecognized value of usingmpi; should not happen"
   exit -1
@@ -77,12 +82,13 @@
   lorenz_63 \
   lorenz_84 \
   lorenz_96 \
+  lorenz_96_2scale \
   mpas_atm \
   simple_advection \
   wrf \
 )
 
-# needed soon: null_model, lorenz_96_2scale
+# needed soon: null_model
 
 #----------------------------------------------------------------------
 # Compile all executables for each model.


More information about the Dart-dev mailing list