Skip to content

Commit

Permalink
[LAME] Build for experimental platforms (#3093)
Browse files Browse the repository at this point in the history
  • Loading branch information
giordano authored May 28, 2021
1 parent d668b5a commit 16ee4af
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions L/LAME/build_tarballs.jl
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,8 @@ sources = [
"ddfe36cab873794038ae2c1210557ad34857a4b6bdc515785d1da9e175b1da1e"),
]

version = v"3.100.1" # <--- This version number is a lie to build for experimental platforms

# Bash recipe for building across all platforms
script = raw"""
cd $WORKSPACE/srcdir/lame-*
Expand All @@ -26,7 +28,7 @@ make install

# 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 @@ -39,4 +41,4 @@ dependencies = Dependency[
]

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

0 comments on commit 16ee4af

Please sign in to comment.