mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 23:03:40 +01:00
Merge pull request #263817 from misuzu/graphene-armv7l-fix
graphene: disable broken NEON support on armv7l-linux
This commit is contained in:
commit
a1faa830fa
1 changed files with 4 additions and 0 deletions
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue