Merge pull request #126171 from zhaofengli/libimagequant-sse

libimagequant: Disable SSE on non-X86 architectures
master
Jörg Thalheim 2021-06-08 10:21:54 +02:00 committed by GitHub
commit 012cc02441
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -15,7 +15,7 @@ stdenv.mkDerivation rec {
patchShebangs ./configure
'';
configureFlags = lib.optionals stdenv.isAarch64 [ "--disable-sse" ];
configureFlags = lib.optionals (!stdenv.isi686 && !stdenv.isx86_64) [ "--disable-sse" ];
meta = with lib; {
homepage = "https://pngquant.org/lib/";