Skip to content

Commit

Permalink
fix packaging
Browse files Browse the repository at this point in the history
  • Loading branch information
wsmoses committed Jun 30, 2024
1 parent ec1284a commit 2053e00
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion .packaging/build_tarballs.jl
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,14 @@ for llvm_version in llvm_versions, llvm_assertions in (false, true)
# We don't build LLVM 15 for i686-linux-musl.
filter!(p -> !(arch(p) == "i686" && libc(p) == "musl"), platforms)
end

if llvm_version >= v"17"
# Windows is broken for LLVM16_jll see https://github.com/JuliaPackaging/Yggdrasil/pull/8017#issuecomment-1930838052
filter!(p -> !(os(p) == "windows"), platforms)
end
if llvm_version >= v"17" && llvm_assertions
# Windows is broken for LLVM16_jll see https://github.com/JuliaPackaging/Yggdrasil/pull/8017#issuecomment-1930838052
filter!(p -> !Sys.isapple(p), platforms)
end
for platform in platforms
augmented_platform = deepcopy(platform)
augmented_platform[LLVM.platform_name] = LLVM.platform(llvm_version, llvm_assertions)
Expand Down

0 comments on commit 2053e00

Please sign in to comment.