Skip to content

Commit

Permalink
[FFTW] Build for experimental platforms
Browse files Browse the repository at this point in the history
  • Loading branch information
jeremiahpslewis committed Sep 4, 2021
1 parent 6c47f80 commit f6e8d22
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions F/FFTW/build_tarballs.jl
Original file line number Diff line number Diff line change
@@ -1,11 +1,12 @@
using BinaryBuilder

name = "FFTW"
version = v"3.3.9"
version = v"3.3.10" # <-- this is a lie, we're building v3.3.8, but we need to bump version to build for julia v1.6
source_version = v"3.3.9"

# Collection of sources required to build FFTW
sources = [
ArchiveSource("http://fftw.org/fftw-$(version).tar.gz",
ArchiveSource("http://fftw.org/fftw-$(source_version).tar.gz",
"bf2c7ce40b04ae811af714deb512510cc2c17b9ab9d6ddcf49fe4487eea7af3d"),
]

Expand Down Expand Up @@ -70,7 +71,7 @@ install_license COPYING COPYRIGHT

# These are the platforms we will build for by default, unless further
# platforms are passed in on the command line
platforms = supported_platforms() # build on all supported platforms
platforms = supported_platforms(; experimental=true) # build on all supported platforms

# The products that we will ensure are always built
products = [
Expand All @@ -83,4 +84,4 @@ dependencies = Dependency[
]

# Build the tarballs.
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 f6e8d22

Please sign in to comment.