summary refs log tree commit diff
path: root/pkgs/development/libraries/pixman
diff options
context:
space:
mode:
authorTuomas Tynkkynen <tuomas.tynkkynen@iki.fi>2015-08-16 19:27:40 +0300
committerTuomas Tynkkynen <tuomas.tynkkynen@iki.fi>2015-08-17 16:05:01 +0300
commit65020eef409f7d1adb3f58a2edff8e9941ba8cc7 (patch)
tree05e33f88e6be228f228539939b0781dcd66d804b /pkgs/development/libraries/pixman
parentdc8755a42cba77ea88170f8d2045338c7e06e462 (diff)
downloadnixpkgs-65020eef409f7d1adb3f58a2edff8e9941ba8cc7.tar
nixpkgs-65020eef409f7d1adb3f58a2edff8e9941ba8cc7.tar.gz
nixpkgs-65020eef409f7d1adb3f58a2edff8e9941ba8cc7.tar.bz2
nixpkgs-65020eef409f7d1adb3f58a2edff8e9941ba8cc7.tar.lz
nixpkgs-65020eef409f7d1adb3f58a2edff8e9941ba8cc7.tar.xz
nixpkgs-65020eef409f7d1adb3f58a2edff8e9941ba8cc7.tar.zst
nixpkgs-65020eef409f7d1adb3f58a2edff8e9941ba8cc7.zip
pixman: Enable '--disable-arm-iwmmxt' on ARM
Otherwise the build fails on ARMv6:

  CC       libpixman_iwmmxt_la-pixman-mmx.lo
pixman-mmx.c: In function 'mmx_fetch_x8r8g8b8':
pixman-mmx.c:3812:1: internal compiler error: Max. number of generated reload insns per insn is achieved (90)
Diffstat (limited to 'pkgs/development/libraries/pixman')
-rw-r--r--pkgs/development/libraries/pixman/default.nix2
1 files changed, 2 insertions, 0 deletions
diff --git a/pkgs/development/libraries/pixman/default.nix b/pkgs/development/libraries/pixman/default.nix
index 74d7706ec59..ce027a0a269 100644
--- a/pkgs/development/libraries/pixman/default.nix
+++ b/pkgs/development/libraries/pixman/default.nix
@@ -16,6 +16,8 @@ stdenv.mkDerivation rec {
 
   patches = stdenv.lib.optional stdenv.isDarwin ./fix-clang36.patch;
 
+  configureFlags = if stdenv.isArm then ["--disable-arm-iwmmxt"] else null;
+
   meta = {
     homepage = http://pixman.org;
     description = "A low-level library for pixel manipulation";