mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-17 06:06:13 +03:00
range-v3: Fix the AArch64 build by disabling the tests
Another reference for working AArch64 builds: https://git.alpinelinux.org/aports/tree/community/range-v3/APKBUILD Co-Authored-By: Ilya Fedin <fedin-ilja2010@ya.ru>
This commit is contained in:
parent
ae09f2a671
commit
cb6e9970ed
@ -13,7 +13,11 @@ stdenv.mkDerivation rec {
|
||||
|
||||
nativeBuildInputs = [ cmake ];
|
||||
|
||||
doCheck = true;
|
||||
# Building the tests currently fails on AArch64 due to internal compiler
|
||||
# errors (with GCC 9.2):
|
||||
cmakeFlags = stdenv.lib.optional stdenv.isAarch64 "-DRANGE_V3_TESTS=OFF";
|
||||
|
||||
doCheck = !stdenv.isAarch64;
|
||||
checkTarget = "test";
|
||||
|
||||
enableParallelBuilding = true;
|
||||
|
Loading…
Reference in New Issue
Block a user