From 478fecce96ce6629b737e87d99b7bdcea2d325b1 Mon Sep 17 00:00:00 2001 From: Michael Weiss Date: Fri, 3 Sep 2021 23:13:43 +0200 Subject: [PATCH] llvmPackages_13.compiler-rt: Mark as broken on Aarch64 To avoid unnecessary builds but this needs to be fixed ASAP. Chromium already depends on it and a lot of additional packages, including Mesa, will depend on it after the stable release. (cherry picked from commit 5661f7dbeeee708a401d2524ddb40374dda4c6a7) --- pkgs/development/compilers/llvm/13/compiler-rt/default.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pkgs/development/compilers/llvm/13/compiler-rt/default.nix b/pkgs/development/compilers/llvm/13/compiler-rt/default.nix index eb3446342b4..bea49f54e80 100644 --- a/pkgs/development/compilers/llvm/13/compiler-rt/default.nix +++ b/pkgs/development/compilers/llvm/13/compiler-rt/default.nix @@ -110,5 +110,7 @@ stdenv.mkDerivation { # "All of the code in the compiler-rt project is dual licensed under the MIT # license and the UIUC License (a BSD-like license)": license = with lib.licenses; [ mit ncsa ]; + # TODO/FIXME: Build fails on Hydra: + broken = stdenv.isAarch64; }; }