lol
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

pixman: fix aarch64-darwin by disabling neon

https://hydra.nixos.org/build/197830077

authored by

Randy Eckenrode and committed by
Vladimír Čunát
50d8cda3 5995b816

+3 -1
+3 -1
pkgs/development/libraries/pixman/default.nix
··· 32 32 33 33 buildInputs = [ libpng ]; 34 34 35 - configureFlags = lib.optional stdenv.isAarch32 "--disable-arm-iwmmxt"; 35 + configureFlags = lib.optional stdenv.isAarch32 "--disable-arm-iwmmxt" 36 + # Disable until https://gitlab.freedesktop.org/pixman/pixman/-/issues/46 is resolved 37 + ++ lib.optional (stdenv.isAarch64 && !stdenv.cc.isGNU) "--disable-arm-a64-neon"; 36 38 37 39 preConfigure = '' 38 40 # https://gitlab.freedesktop.org/pixman/pixman/-/issues/62