Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 4f99a64db4c1
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: b070035382cd
Choose a head ref
  • 2 commits
  • 1 file changed
  • 2 contributors

Commits on Jan 25, 2020

  1. 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>
    primeos and ilya-fedin committed Jan 25, 2020

    Verified

    This commit was signed with the committer’s verified signature.
    Ekleog Léo Gaspard
    Copy the full SHA
    cb6e997 View commit details
  2. Merge pull request #78447 from primeos/range-v3

    range-v3: Fix the AArch64 build by disabling the tests
    primeos authored Jan 25, 2020

    Verified

    This commit was signed with the committer’s verified signature.
    Ekleog Léo Gaspard
    Copy the full SHA
    b070035 View commit details
Showing with 5 additions and 1 deletion.
  1. +5 −1 pkgs/development/libraries/range-v3/default.nix
6 changes: 5 additions & 1 deletion pkgs/development/libraries/range-v3/default.nix
Original file line number Diff line number Diff line change
@@ -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;