You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
PR #5979 (merge commit 46b65c1) introduced two small bugs into the MPAS Standalone compile.
On compile:
cd components/mpas-ocean
make $COMPILER OPENMP=true DEBUG=true
Makefile:1197: *** missing 'endif'. Stop.
Once the endif is added to the makefile, it partially compiles and ends with:
mpas.F(15): error #6401: The attributes of this name conflict with those made accessible by a USE statement. [CORELIST]
type (core_type), pointer :: corelist => null()
--------------------------------^
The text was updated successfully, but these errors were encountered:
…#6134)
Fix MPAS standalone compile issues
These two small changes allow MPAS components to compile in stand-alone
mode. It should not affect E3SM compile or simulations. The fixes are:
* A missing endif was added to the Makefile
* A redundant corelist declaration was removed from mpas.F because it
was added to mpas_subdriver.F in PR Introduce MOAB coupler interfaces
and update moab driver #5979, and the subdriver is used by mpas.F.
These fixes should work for ocean, sea ice, and MALI cores.
Fixes#6133Fixes#6138
[BFB]
PR #5979 (merge commit 46b65c1) introduced two small bugs into the MPAS Standalone compile.
On compile:
Once the
endif
is added to the makefile, it partially compiles and ends with:The text was updated successfully, but these errors were encountered: