mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 06:45:16 +01:00
llvm6: disable tests on cross compiler
This seems to be broken currently. https://hydra.nixos.org/build/77597880/nixlog/1 /cc @ericson2314 @dtzWill
This commit is contained in:
parent
c7d77c90c6
commit
f3fc04bfd2
1 changed files with 2 additions and 1 deletions
|
@ -130,7 +130,8 @@ in stdenv.mkDerivation (rec {
|
|||
ln -s $lib/lib/libLLVM.dylib $lib/lib/libLLVM-${release_version}.dylib
|
||||
'';
|
||||
|
||||
doCheck = stdenv.isLinux && (!stdenv.isi686);
|
||||
doCheck = stdenv.isLinux && (!stdenv.isi686)
|
||||
&& (stdenv.hostPlatform == stdenv.targetPlatform);
|
||||
|
||||
checkTarget = "check-all";
|
||||
|
||||
|
|
Loading…
Reference in a new issue