Skip to content

Commit

Permalink
[LibVPX] Upgrade to v1.10.0 and build for experimental platforms
Browse files Browse the repository at this point in the history
  • Loading branch information
giordano committed May 28, 2021
1 parent cac6229 commit d842c87
Showing 1 changed file with 7 additions and 5 deletions.
12 changes: 7 additions & 5 deletions L/LibVPX/build_tarballs.jl
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,12 @@
using BinaryBuilder

name = "LibVPX"
version = v"1.9.0"
version = v"1.10.0"

# Collection of sources required to build LibVPX
sources = [
ArchiveSource("https://github.com/webmproject/libvpx/archive/v$(version).tar.gz",
"d279c10e4b9316bf11a570ba16c3d55791e1ad6faa4404c67422eb631782c80a"),
"85803ccbdbdd7a3b03d930187cb055f1353596969c1f92ebec2db839fa4f834a"),
]

# Bash recipe for building across all platforms
Expand All @@ -31,6 +31,8 @@ elif [[ "${target}" == powerpc64le-linux-* ]]; then
export TARGET=ppc64le-linux-gcc
elif [[ "${target}" == x86_64-apple-* ]]; then
export TARGET=x86_64-darwin14-gcc
elif [[ "${target}" == aarch64-apple-* ]]; then
export TARGET=arm64-darwin20-gcc
elif [[ "${target}" == i686-w64-mingw32 ]]; then
export TARGET=x86-win32-gcc
elif [[ "${target}" == x86_64-w64-mingw32 ]]; then
Expand Down Expand Up @@ -65,7 +67,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()
platforms = supported_platforms(; experimental=true)

# The products that we will ensure are always built
products = [
Expand All @@ -75,8 +77,8 @@ products = [
]

# Dependencies that must be installed before this package can be built
dependencies = [
dependencies = Dependency[
]

# Build the tarballs, and possibly a `build.jl` as well.
build_tarballs(ARGS, name, version, sources, script, platforms, products, dependencies; preferred_gcc_version=v"8")
build_tarballs(ARGS, name, version, sources, script, platforms, products, dependencies; preferred_gcc_version=v"8", julia_compat="1.6")

0 comments on commit d842c87

Please sign in to comment.