Merge pull request #263817 from misuzu/graphene-armv7l-fix

graphene: disable broken NEON support on armv7l-linux
This commit is contained in:
Weijia Wang 2023-10-31 21:12:38 +01:00 committed by GitHub
commit a1faa830fa
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -77,6 +77,10 @@ stdenv.mkDerivation rec {
"-Dintrospection=enabled"
"-Dinstalled_test_datadir=${placeholder "installedTests"}/share"
"-Dinstalled_test_bindir=${placeholder "installedTests"}/libexec"
] ++ lib.optionals stdenv.isAarch32 [
# the box test is failing with SIGBUS on armv7l-linux
# https://github.com/ebassi/graphene/issues/215
"-Darm_neon=false"
];
doCheck = true;