Skip to content

Commit

Permalink
Update build_tarballs.jl
Browse files Browse the repository at this point in the history
  • Loading branch information
wsmoses authored Sep 16, 2024
1 parent c8240e0 commit 87ea5eb
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .packaging/build_tarballs.jl
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,9 @@ sources = [

# These are the platforms we will build for by default, unless further
# platforms are passed in on the command line
platforms = expand_cxxstring_abis(supported_platforms(; experimental=true))
platforms = expand_cxxstring_abis(supported_platforms())
# Exclude aarch64 FreeBSD for the time being
filter!(p -> !(Sys.isfreebsd(p) && arch(p) == "aarch64"), platforms)

# Bash recipe for building across all platforms
script = raw"""
Expand Down

0 comments on commit 87ea5eb

Please sign in to comment.