about summary refs log tree commit diff
path: root/pkgs/development/compilers/llvm/git
diff options
context:
space:
mode:
authorgithub-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>2024-01-20 18:01:02 +0000
committerGitHub <noreply@github.com>2024-01-20 18:01:02 +0000
commit4dea63e421ff4038e7fab03985ed658aaa71b041 (patch)
treeb0f37cc89f3561bd0b30a5cf2449b651e0b7a94a /pkgs/development/compilers/llvm/git
parent2aa3d6edac32122e79b2f49e710d5e38f0f8a935 (diff)
parent2e7eed72914de2d0d4d38e4d545ca26702dba818 (diff)
downloadnixlib-4dea63e421ff4038e7fab03985ed658aaa71b041.tar
nixlib-4dea63e421ff4038e7fab03985ed658aaa71b041.tar.gz
nixlib-4dea63e421ff4038e7fab03985ed658aaa71b041.tar.bz2
nixlib-4dea63e421ff4038e7fab03985ed658aaa71b041.tar.lz
nixlib-4dea63e421ff4038e7fab03985ed658aaa71b041.tar.xz
nixlib-4dea63e421ff4038e7fab03985ed658aaa71b041.tar.zst
nixlib-4dea63e421ff4038e7fab03985ed658aaa71b041.zip
Merge master into staging-next
Diffstat (limited to 'pkgs/development/compilers/llvm/git')
-rw-r--r--pkgs/development/compilers/llvm/git/compiler-rt/default.nix3
1 files changed, 3 insertions, 0 deletions
diff --git a/pkgs/development/compilers/llvm/git/compiler-rt/default.nix b/pkgs/development/compilers/llvm/git/compiler-rt/default.nix
index 808df140e772..0f15a9e12cde 100644
--- a/pkgs/development/compilers/llvm/git/compiler-rt/default.nix
+++ b/pkgs/development/compilers/llvm/git/compiler-rt/default.nix
@@ -152,5 +152,8 @@ 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 ];
+    # compiler-rt requires a Clang stdenv on 32-bit RISC-V:
+    # https://reviews.llvm.org/D43106#1019077
+    broken = stdenv.hostPlatform.isRiscV32 && !stdenv.cc.isClang;
   };
 }