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."
This commit is contained in:
hilga007 2022-02-20 20:14:23 -08:00 committed by GitHub
parent 4f5f9bdffb
commit eb5913fc72
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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}