mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-02-13 07:34:21 +00:00
fftwQuad: Fix build on Darwin by forcing gcc
This commit is contained in:
parent
7dad858aa1
commit
7a67b4c28b
@ -19618,7 +19618,11 @@ with pkgs;
|
||||
fftwSinglePrec = fftw.override { precision = "single"; };
|
||||
fftwFloat = fftwSinglePrec; # the configure option is just an alias
|
||||
fftwLongDouble = fftw.override { precision = "long-double"; };
|
||||
fftwQuad = fftw.override { precision = "quad-precision"; };
|
||||
# Need gcc >= 4.6.0 to build with FFTW with quad precision, but Darwin defaults to Clang
|
||||
fftwQuad = fftw.override {
|
||||
precision = "quad-precision";
|
||||
stdenv = gccStdenv;
|
||||
};
|
||||
fftwMpi = fftw.override { enableMpi = true; };
|
||||
|
||||
filter-audio = callPackage ../development/libraries/filter-audio {};
|
||||
|
Loading…
Reference in New Issue
Block a user