Skip to content

Commit f8f1811

Browse files
authored
fftwQuad: Mark unsupported on aarch64 (#283554)
2 parents 6a31099 + 94847c9 commit f8f1811

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

pkgs/development/libraries/fftw/default.nix

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -85,5 +85,7 @@ stdenv.mkDerivation (finalAttrs: {
8585
}.${precision}
8686
];
8787
platforms = platforms.unix;
88+
# quad-precision requires libquadmath from gfortran, but libquadmath is not supported on aarch64
89+
badPlatforms = lib.optionals (precision == "quad-precision") platforms.aarch64;
8890
};
8991
})

0 commit comments

Comments
 (0)