From 268dfa2c8c73ec546febf1a8ab4d135fc696124c Mon Sep 17 00:00:00 2001 From: Michael Abbott <32575566+mcabbott@users.noreply.github.com> Date: Sun, 20 Jun 2021 09:44:49 -0400 Subject: [PATCH] [Hwloc] Build for experimental platforms (#3190) --- H/Hwloc/build_tarballs.jl | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/H/Hwloc/build_tarballs.jl b/H/Hwloc/build_tarballs.jl index ab26f18f891..e93dca78e73 100644 --- a/H/Hwloc/build_tarballs.jl +++ b/H/Hwloc/build_tarballs.jl @@ -3,11 +3,11 @@ using BinaryBuilder name = "Hwloc" -version = v"2.4.1" +version = v"2.5.0" # Collection of sources required to build hwloc sources = [ - ArchiveSource("https://download.open-mpi.org/release/hwloc/v2.4/hwloc-$(version).tar.bz2", "392421e69f26120c8ab95d151fe989f2b4b69dab3c7735741c4e0a6d7de5de63") + ArchiveSource("https://download.open-mpi.org/release/hwloc/v2.5/hwloc-$(version).tar.bz2", "a9cf9088be085bdd167c78b73ddf94d968fa73a8ccf62172481ba9342c4f52c8") ] # Bash recipe for building across all platforms @@ -20,7 +20,7 @@ make install # These are the platforms we will build for by default, unless further # platforms are passed in on the command line -platforms = supported_platforms() +platforms = supported_platforms(;experimental=true) # The products that we will ensure are always built products = [ @@ -32,5 +32,5 @@ dependencies = [ ] # Build the tarballs, and possibly a `build.jl` as well. -build_tarballs(ARGS, name, version, sources, script, platforms, products, dependencies) +build_tarballs(ARGS, name, version, sources, script, platforms, products, dependencies; julia_compat="1.6")