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 fdc6d0b
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions F/FFTW/build_tarballs.jl
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
using BinaryBuilder

name = "FFTW"
version = v"3.3.9"
version = v"3.3.9+1" # FFTW verison is 3.3.9; +1 in version string is to trigger rebuild

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

Expand Down Expand Up @@ -70,7 +70,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 +83,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 fdc6d0b

Please sign in to comment.