Merge pull request #103846 from kampka/llvm_11_musl
llvm_11: Disable checks on musl libc hosts
This commit is contained in:
commit
1881e81e3c
1 changed files with 1 additions and 1 deletions
|
@ -152,7 +152,7 @@ in stdenv.mkDerivation (rec {
|
|||
ln -s $lib/lib/libLLVM.dylib $lib/lib/libLLVM-${release_version}.dylib
|
||||
'';
|
||||
|
||||
doCheck = stdenv.isLinux && (!stdenv.isx86_32);
|
||||
doCheck = stdenv.isLinux && (!stdenv.isx86_32) && (!stdenv.hostPlatform.isMusl);
|
||||
|
||||
checkTarget = "check-all";
|
||||
|
||||
|
|
Loading…
Reference in a new issue