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)
This commit is contained in:
parent
dc8755a42c
commit
65020eef40
1 changed files with 2 additions and 0 deletions
|
@ -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";
|
||||
|
|
Loading…
Reference in a new issue