Merge pull request #136629 from primeos/llvmPackages_13

llvmPackages_13.compiler-rt: Mark as broken on Aarch64
This commit is contained in:
Michael Weiss 2021-09-04 00:26:49 +02:00 committed by GitHub
commit cd0ec0e6fa
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -110,5 +110,7 @@ stdenv.mkDerivation {
# "All of the code in the compiler-rt project is dual licensed under the MIT # "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 and the UIUC License (a BSD-like license)":
license = with lib.licenses; [ mit ncsa ]; license = with lib.licenses; [ mit ncsa ];
# TODO/FIXME: Build fails on Hydra:
broken = stdenv.isAarch64;
}; };
} }