pixman: fix build on armv7

fixes:
../pixman/pixman-arm-simd-asm.h:849: error: garbage following instruction -- `bne 03f'

	man.txt
This commit is contained in:
Guillaume Girol 2024-12-28 12:00:00 +00:00
parent 634fd46801
commit af2be6465f

View File

@ -56,6 +56,11 @@ stdenv.mkDerivation (finalAttrs: {
# architectures and requires used to disable them:
# https://gitlab.freedesktop.org/pixman/pixman/-/issues/88
mesonAutoFeatures = "auto";
# fix armv7 build
mesonFlags = lib.optionals stdenv.hostPlatform.isAarch32 [
"-Darm-simd=disabled"
"-Dneon=disabled"
];
preConfigure = ''
# https://gitlab.freedesktop.org/pixman/pixman/-/issues/62