Skip to content

Commit 54bf556

Browse files
authored
try to avoid strange segfault on aarch64
1 parent b9eb904 commit 54bf556

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

recipe/run_test.sh

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,10 @@ if [[ $PKG_NAME == "openmpi" ]]; then
2222
fi
2323

2424
command -v mpiexec
25-
which mpiexec
25+
# try to avoid strange segfault
26+
if [[ "$target_platform" != "linux-aarch64" ]]; then
27+
which mpiexec
28+
fi
2629
$MPIEXEC --help
2730
$MPIEXEC -n 4 ./helloworld.sh
2831
fi

0 commit comments

Comments
 (0)