From d2cb54668b5e49fd35a60164f40ad6f36720f806 Mon Sep 17 00:00:00 2001 From: Jon Rood Date: Tue, 28 Jun 2022 13:27:02 -0600 Subject: [PATCH] Fix gnu make on Crusher for mpi_gtl_hsa (#2857) Update environment variable at OLCF for mpi_gtl_hsa. --- Tools/GNUMake/sites/Make.olcf | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Tools/GNUMake/sites/Make.olcf b/Tools/GNUMake/sites/Make.olcf index 651971c6c95..fcccfc8de08 100644 --- a/Tools/GNUMake/sites/Make.olcf +++ b/Tools/GNUMake/sites/Make.olcf @@ -60,7 +60,7 @@ ifeq ($(which_computer),spock) endif # for gpu aware mpi ifeq ($(USE_HIP),TRUE) - LIBRARIES += $(PE_MPICH_GTL_DIR_gfx908) -lmpi_gtl_hsa + LIBRARIES += $(PE_MPICH_GTL_DIR_amd_gfx908) -lmpi_gtl_hsa endif endif endif @@ -80,7 +80,7 @@ ifeq ($(which_computer),crusher) endif # for gpu aware mpi ifeq ($(USE_HIP),TRUE) - LIBRARIES += -lmpi_gtl_hsa + LIBRARIES += $(PE_MPICH_GTL_DIR_amd_gfx90a) -lmpi_gtl_hsa endif endif endif