Skip to content

Commit

Permalink
llvm6: disable tests on cross compiler
Browse files Browse the repository at this point in the history
  • Loading branch information
matthewbauer committed Aug 1, 2018
1 parent c7d77c9 commit f3fc04b
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion pkgs/development/compilers/llvm/6/llvm.nix
Original file line number Diff line number Diff line change
Expand Up @@ -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";

Expand Down

0 comments on commit f3fc04b

Please sign in to comment.