From eb5913fc7289c918c0ca007d8c4fde98a4ea94c9 Mon Sep 17 00:00:00 2001 From: hilga007 <34434551+hilga007@users.noreply.github.com> Date: Sun, 20 Feb 2022 20:14:23 -0800 Subject: [PATCH] update build.hwloc.sh to download v.2.6.0 (stable) hwloc 2.6.0 is the latest stable version, 2.5.0 is listed as "old." --- scripts/build.hwloc.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/scripts/build.hwloc.sh b/scripts/build.hwloc.sh index 022f67fe..8a6b011b 100755 --- a/scripts/build.hwloc.sh +++ b/scripts/build.hwloc.sh @@ -1,6 +1,6 @@ #!/bin/bash -e -HWLOC_VERSION="2.5.0" +HWLOC_VERSION="2.6.0" mkdir -p deps mkdir -p deps/include @@ -8,7 +8,7 @@ mkdir -p deps/lib mkdir -p build && cd build -wget https://download.open-mpi.org/release/hwloc/v2.5/hwloc-${HWLOC_VERSION}.tar.gz -O hwloc-${HWLOC_VERSION}.tar.gz +wget https://download.open-mpi.org/release/hwloc/v2.6/hwloc-${HWLOC_VERSION}.tar.gz -O hwloc-${HWLOC_VERSION}.tar.gz tar -xzf hwloc-${HWLOC_VERSION}.tar.gz cd hwloc-${HWLOC_VERSION} @@ -16,4 +16,4 @@ cd hwloc-${HWLOC_VERSION} make -j$(nproc || sysctl -n hw.ncpu || sysctl -n hw.logicalcpu) cp -fr include ../../deps cp hwloc/.libs/libhwloc.a ../../deps/lib -cd .. \ No newline at end of file +cd ..