Skip to content

Commit

Permalink
Merge pull request #263817 from misuzu/graphene-armv7l-fix
Browse files Browse the repository at this point in the history
graphene: disable broken NEON support on armv7l-linux
  • Loading branch information
wegank committed Oct 31, 2023
2 parents af48065 + 8dc9931 commit a1faa83
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions pkgs/development/libraries/graphene/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit a1faa83

Please sign in to comment.