<div dir="ltr"><div><div><div>Hi all,<br><br></div>As previously discussed, I have committed a change to allow configure.nems.NUOPC to use ESMF 7.1 linker variables.  Apps linking against ESMF 7.0 will see no change due to an &quot;ifdef&quot; in that file.  This commit only impacts apps using versions of ESMF 7.1 that have added those variables.  No supported app uses 7.1 at this time (NEMSGSM, NEMSfv3gfs, and WW3-GSM).  The commit is in NEMS revision 95995.<br><br></div>Sincerely,<br></div>Sam Trahan<br><br>Index: src/conf/configure.nems.NUOPC<br>===================================================================<br>--- src/conf/configure.nems.NUOPC       (revision 95993)<br>+++ src/conf/configure.nems.NUOPC       (working copy)<br>@@ -11,7 +11,11 @@<br><br> include         $(ESMFMKFILE)<br> ESMF_INC        = $(ESMF_F90COMPILEPATHS)<br>-ESMF_LIB        = -L$(ESMF_LIBSDIR) $(ESMF_F90ESMFLINKLIBS)<br>+ifdef ESMF_F90ESMFLINKPATHS<br>+    ESMF_LIB        = $(ESMF_F90ESMFLINKPATHS) $(ESMF_F90ESMFLINKRPATHS) $(ESMF_F90ESMFLINKLIBS)<br>+else<br>+    ESMF_LIB        = -L$(ESMF_LIBSDIR) $(ESMF_F90ESMFLINKLIBS)<br>+endif<br><br> ################################################################################<br> ## ATM settings<br><br></div>