Skip to content

Commit

Permalink
[tectonic] 0.15.0 (#9232)
Browse files Browse the repository at this point in the history
* [tectonic] 0.15.0

* Disable musl
  • Loading branch information
ViralBShah authored Aug 12, 2024
1 parent 25a7cf3 commit 5fd56a1
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions T/tectonic/build_tarballs.jl
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,12 @@
using BinaryBuilder, Pkg

name = "tectonic"
version = v"0.14.1"
version = v"0.15.0"

# Collection of sources required to build tar
sources = [
GitSource("https://github.com/tectonic-typesetting/tectonic.git",
"e9b786655cac895bb148c5bfa3fc4cec6a01d72f"),
"33ae8e755413c6b0d7adcbb550818683c6be645c"),
]

# Bash recipe for building across all platforms
Expand All @@ -29,6 +29,8 @@ platforms = supported_platforms()
filter!(p -> arch(p) != "armv6l", platforms)
# Rust toolchain for i686 Windows is unusable
filter!(p -> !Sys.iswindows(p) || arch(p) != "i686", platforms)
# Musl used to build in 0.14 but does not in 0.15.
filter!(p -> libc(p) != "musl", platforms)
platforms = expand_cxxstring_abis(platforms)

# The products that we will ensure are always built
Expand Down

0 comments on commit 5fd56a1

Please sign in to comment.