From f345d8a89d127d70299b9cba247d9c342ca414af Mon Sep 17 00:00:00 2001 From: Mikhail Chusavitin Date: Wed, 8 Apr 2026 09:47:35 +0300 Subject: [PATCH] Build HPL serially to avoid upstream make races --- iso/builder/build-hpl.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/iso/builder/build-hpl.sh b/iso/builder/build-hpl.sh index 7c28d8e..f4f8726 100755 --- a/iso/builder/build-hpl.sh +++ b/iso/builder/build-hpl.sh @@ -367,7 +367,7 @@ gcc -O2 -c -o "${BUILD_TMP}/mpi_stub.o" "${BUILD_TMP}/mpi_stub.c" # build HPL echo "=== building HPL ${HPL_VERSION} ===" -make -j"$(nproc)" arch=bee +make arch=bee XHPL_BIN="bin/bee/xhpl" [ -x "${XHPL_BIN}" ] || { echo "ERROR: xhpl not found after build"; exit 1; }