Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

MPICH: Try building 4.3.0rc2 #10249

Draft
wants to merge 4 commits into
base: master
Choose a base branch
from
Draft
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 8 additions & 4 deletions M/MPICH/build_tarballs.jl
Original file line number Diff line number Diff line change
@@ -1,14 +1,15 @@
using BinaryBuilder, Pkg
using BinaryBuilderBase: get_addable_spec
using Base.BinaryPlatforms
const YGGDRASIL_DIR = "../.."
include(joinpath(YGGDRASIL_DIR, "platforms", "mpi.jl"))

name = "MPICH"
version = v"4.2.3"
version = v"4.3.0"

sources = [
ArchiveSource("https://www.mpich.org/static/downloads/$(version)/mpich-$(version).tar.gz",
"7a019180c51d1738ad9c5d8d452314de65e828ee240bcb2d1f80de9a65be88a8"),
ArchiveSource("https://www.mpich.org/static/downloads/$(version)rc3/mpich-$(version)rc3.tar.gz",
"f2e28c33b5049f5b1440fca82b4cbccb1196be68ead68fc527661e0d67767cda"),
DirectorySource("bundled"),
]

Expand Down Expand Up @@ -127,7 +128,10 @@ products = [

dependencies = [
Dependency(PackageSpec(name="CompilerSupportLibraries_jll", uuid="e66e0078-7015-5450-92f7-15fbd957f2ae")),
Dependency("Hwloc_jll"; compat="2.11.1"), # We need 2.11.1+1 for aarch64-unknown-freebsd
# Dependency("Hwloc_jll"; compat="2.11.2"),
# Until we have a new version of hwloc built for riscv64 we need to use the
# `get_addable_spec` hack. From v2.11.3 on we should be able to remove it here.
Dependency(get_addable_spec("Hwloc_jll", v"2.11.2+2"); compat="2.11.2"),
Dependency(PackageSpec(name="MPIPreferences", uuid="3da0fdf6-3ccc-4f1b-acd9-58baa6c99267");
compat="0.1", top_level=true),
]
Expand Down