Skip to content

Commit

Permalink
Disable some platforms
Browse files Browse the repository at this point in the history
Will hopefully enable a lot of these platforms back in future Rust versions
rust-lang/rust#61956
  • Loading branch information
VarLad authored Dec 17, 2022
1 parent 59213bb commit da104e5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion L/libwinit/build_tarballs.jl
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ fi

# These are the platforms we will build for by default, unless further
# platforms are passed in on the command line
platforms = supported_platforms(; exclude=p -> (Sys.iswindows(p) && arch(p) == "i686") || (Sys.islinux(p) && (libc(p) == "musl" || arch(p) == "armv6l")) || Sys.isbsd(p))
platforms = supported_platforms(; exclude=p -> (Sys.iswindows(p) && arch(p) == "i686") || (Sys.islinux(p) && (libc(p) == "musl" || arch(p) == "armv6l" || arch(p) == "armv7l" || arch(p) == "i686")) || Sys.isbsd(p))

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

0 comments on commit da104e5

Please sign in to comment.