Skip to content

Commit d6e548e

Browse files
authored
Don't build musl (rust-lang#999)
1 parent f550600 commit d6e548e

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

.packaging/build_tarballs.jl

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -95,6 +95,11 @@ for llvm_version in llvm_versions, llvm_assertions in (false, true)
9595
LibraryProduct(["libEnzymeBCLoad-$(llvm_version.major)", "libEnzymeBCLoad"], :libEnzymeBCLoad, dont_dlopen=true),
9696
]
9797

98+
if llvm_version >= v"15"
99+
# We don't build LLVM 15 for i686-linux-musl.
100+
filter!(p -> !(arch(p) == "i686" && libc(p) == "musl"), platforms)
101+
end
102+
98103
for platform in platforms
99104
augmented_platform = deepcopy(platform)
100105
augmented_platform[LLVM.platform_name] = LLVM.platform(llvm_version, llvm_assertions)

0 commit comments

Comments
 (0)