Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: JuliaMath/FFTW.jl Loading
base: v1.4.2
Choose a base ref
...
head repository: JuliaMath/FFTW.jl Loading
compare: v1.4.3
Choose a head ref
  • 3 commits
  • 5 files changed
  • 2 contributors

Commits on Jun 16, 2021

  1. Make FFTW relocatable for PackageCompiler

    Because we need to know the FFTW vendor pretty early (at precompile
    time to generate code, and at runtime) we need to load the path during
    build (which bakes it into the precompile image), however we need to
    update that path on next load within `__init__()` in case we're a part
    of PackageCompiler and we need to be able to move things around without
    requiring a recompile.  So we change all accesses of `libfftw3{,f}` to
    be through a `Ref{String}()`, then update that ref within `__init__()`.
    
    In the future, accesses of `FFTW_jll.libfftw3` will be through a
    function, rather than a direct variable access, and we'll be able to get
    these things for free, but that's still a ways down the line.
    staticfloat committed Jun 16, 2021
    Configuration menu
    Copy the full SHA
    e96270a View commit details
    Browse the repository at this point in the history

Commits on Jun 21, 2021

  1. Merge pull request #207 from JuliaMath/sf/relocatable

    Make FFTW relocatable for PackageCompiler
    andreasnoack committed Jun 21, 2021
    Configuration menu
    Copy the full SHA
    5c9cb31 View commit details
    Browse the repository at this point in the history
  2. Release 1.4.3

    andreasnoack committed Jun 21, 2021
    2 Configuration menu
    Copy the full SHA
    9a9239f View commit details
    Browse the repository at this point in the history
Loading