From 35a06a9ebc4a9df0d23767d32696f7390749f6f4 Mon Sep 17 00:00:00 2001 From: Clement Fontenaille Date: Wed, 28 Sep 2022 18:13:34 +0200 Subject: [PATCH] removed extraneous lines causing the wi4mpi helper to fail in interface mode (fix for issue #27) --- CMakeLists.txt | 2 +- src/preload/bin/wi4mpi | 4 ---- 2 files changed, 1 insertion(+), 5 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 6a86941..1c2b195 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -10,7 +10,7 @@ endif() set(VERSION_MAJOR 3) set(VERSION_MINOR 6) -set(VERSION_PATCH 2) +set(VERSION_PATCH 3) set(WI4MPI_VERSION ${VERSION_MAJOR}.${VERSION_MINOR}.${VERSION_PATCH}) diff --git a/src/preload/bin/wi4mpi b/src/preload/bin/wi4mpi index 4ccb831..1f21758 100755 --- a/src/preload/bin/wi4mpi +++ b/src/preload/bin/wi4mpi @@ -156,10 +156,6 @@ if [[ -z $FROM ]]; then [[ ! -e ${WI4MPI_RUN_MPI_F_LIB} ]] && { echo "Error: could not find the FORTRAN target mpi library. You might want to set WI4MPI_RUN_MPI_F_LIB such as /path/to/libmpifort.so or libmpifh.so" >&2 ; exit 1; } [[ ! -e ${WI4MPI_RUN_MPIIO_C_LIB} ]] && { echo "Error: could not find the C target mpi-io library. You might want to set WI4MPI_RUN_MPIIO_C_LIB such as /path/to/libmpi.so" >&2 ; exit 1; } [[ ! -e ${WI4MPI_RUN_MPIIO_F_LIB} ]] && { echo "Error: could not find the FORTRAN target mpi-io library. You might want to set WI4MPI_RUN_MPIIO_F_LIB such as /path/to/libmpifort.so or libmpifh.so" >&2 ; exit 1; } - WI4MPI_RUN_MPI_C_LIB=/path/to/libmpi.so - WI4MPI_RUN_MPI_F_LIB=/path/to/libmpifort.so - WI4MPI_RUN_MPIIO_C_LIB=/path/to/libmpi.so - WI4MPI_RUN_MPIIO_F_LIB=/path/to/libmpifort.so