Skip to content
Merged
Show file tree
Hide file tree
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
4 changes: 2 additions & 2 deletions L/LLVM/Clang@19/build_tarballs.jl
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name = "Clang"
llvm_full_version = v"19.1.1+1"
libllvm_version = v"19.1.1+1"
llvm_full_version = v"19.1.7+0"
libllvm_version = v"19.1.7+0"

using BinaryBuilder, Pkg
using Base.BinaryPlatforms
Expand Down
2 changes: 1 addition & 1 deletion L/LLVM/Clang_unified/build_tarballs.jl
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ llvm_full_versions = [
v"16.0.6+4",
v"17.0.6+5",
v"18.1.7+3",
v"19.1.1+1",
v"19.1.7+0",
]

augment_platform_block = """
Expand Down
4 changes: 2 additions & 2 deletions L/LLVM/LLD@19/build_tarballs.jl
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name = "LLD"
llvm_full_version = v"19.1.1+1"
libllvm_version = v"19.1.1+1"
llvm_full_version = v"19.1.7+0"
libllvm_version = v"19.1.7+0"

using BinaryBuilder, Pkg
using Base.BinaryPlatforms
Expand Down
2 changes: 1 addition & 1 deletion L/LLVM/LLD_unified/build_tarballs.jl
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ llvm_full_versions = [
v"16.0.6+4",
v"17.0.6+5",
v"18.1.7+3",
v"19.1.1+1",
v"19.1.7+0",
]

augment_platform_block = """
Expand Down
4 changes: 2 additions & 2 deletions L/LLVM/LLVM@19/build_tarballs.jl
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name = "LLVM"
llvm_full_version = v"19.1.1+1"
libllvm_version = v"19.1.1+1"
llvm_full_version = v"19.1.7+0"
libllvm_version = v"19.1.7+0"

using BinaryBuilder, Pkg
using Base.BinaryPlatforms
Expand Down
4 changes: 2 additions & 2 deletions L/LLVM/MLIR@19/build_tarballs.jl
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name = "MLIR"
llvm_full_version = v"19.1.1+1"
libllvm_version = v"19.1.1+1"
llvm_full_version = v"19.1.7+0"
libllvm_version = v"19.1.7+0"

using BinaryBuilder, Pkg
using Base.BinaryPlatforms
Expand Down
1 change: 1 addition & 0 deletions L/LLVM/common.jl
Original file line number Diff line number Diff line change
Expand Up @@ -757,6 +757,7 @@ function configure_extraction(ARGS, LLVM_full_version, name, libLLVM_version=not
end

platforms = supported_platforms(; experimental=experimental_platforms)
filter!(p->arch(p)!="riscv64", platforms) # Not supported yet, see https://github.com/JuliaPackaging/BinaryBuilder.jl/issues/1366
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

For the record, this should be fixed now.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Yes, removed in #10594

push!(platforms, Platform("x86_64", "linux"; sanitize="memory"))
if version >= v"15"
# We don't build LLVM 15 for i686-linux-musl.
Expand Down