From a44bbc72e6b3d7c3e9619e5c74de6b6261a8e4c8 Mon Sep 17 00:00:00 2001 From: John Ericson Date: Mon, 18 Sep 2017 19:22:22 -0400 Subject: [PATCH] cc-wrapper: Remove obsolete assertion This was just causing evaluation problems on cross. --- pkgs/build-support/cc-wrapper/default.nix | 2 -- 1 file changed, 2 deletions(-) diff --git a/pkgs/build-support/cc-wrapper/default.nix b/pkgs/build-support/cc-wrapper/default.nix index 0114170b8eb..4bbd6c205e5 100644 --- a/pkgs/build-support/cc-wrapper/default.nix +++ b/pkgs/build-support/cc-wrapper/default.nix @@ -21,8 +21,6 @@ assert !nativeTools -> assert !(nativeLibc && noLibc); assert (noLibc || nativeLibc) == (libc == null); -assert stdenv.targetPlatform != stdenv.hostPlatform -> runCommand != null; - # For ghdl (the vhdl language provider to gcc) we need zlib in the wrapper. assert cc.langVhdl or false -> zlib != null;