Merge pull request #78447 from primeos/range-v3

range-v3: Fix the AArch64 build by disabling the tests
This commit is contained in:
Michael Weiss 2020-01-25 12:39:54 +01:00 committed by GitHub
commit b070035382
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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;