Skip to content

Commit

Permalink
fftwQuad: Mark unsupported on aarch64 (#283554)
Browse files Browse the repository at this point in the history
  • Loading branch information
Scrumplex authored Oct 20, 2024
2 parents 6a31099 + 94847c9 commit f8f1811
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions pkgs/development/libraries/fftw/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -85,5 +85,7 @@ stdenv.mkDerivation (finalAttrs: {
}.${precision}
];
platforms = platforms.unix;
# quad-precision requires libquadmath from gfortran, but libquadmath is not supported on aarch64
badPlatforms = lib.optionals (precision == "quad-precision") platforms.aarch64;
};
})

0 comments on commit f8f1811

Please sign in to comment.