Skip to content

Commit e411765

Browse files
committed
Merge branch 'fix_esmf_link_path' into develop (PR #1432)
This merge corrects a typographical error in src/core_atmosphere/utils/Makefile, where the variable 'MPAS_ESMF_LIBS' should be 'MPAS_ESMF_LIB', matching the name of the variable as defined in the top-level Makefile. This typo was caught when trying to build with the 'nvhpc' target with DEBUG=true, where missing references to various esmf symbols were generated when linking the 'build_tables' executable. * fix_esmf_link_path: Correcting the ESMF link path in src/core_atmosphere/utils/Makefile
2 parents 88ae401 + 099fee9 commit e411765

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/core_atmosphere/utils/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ endif
77
all: $(UTILS)
88

99
build_tables: build_tables.o atmphys_build_tables_thompson.o
10-
$(LINKER) $(LDFLAGS) -o build_tables build_tables.o atmphys_build_tables_thompson.o -L../../framework -L../physics -lphys -lframework $(LIBS) $(MPAS_ESMF_LIBS)
10+
$(LINKER) $(LDFLAGS) -o build_tables build_tables.o atmphys_build_tables_thompson.o -L../../framework -L../physics -lphys -lframework $(LIBS) $(MPAS_ESMF_LIB)
1111
mv build_tables ../../..
1212

1313

0 commit comments

Comments
 (0)