summary refs log tree commit diff
path: root/pkgs/development/libraries/boehm-gc/default.nix
diff options
context:
space:
mode:
authorJohn Ericson <Ericson2314@yahoo.com>2018-01-09 15:09:54 -0500
committerGitHub <noreply@github.com>2018-01-09 15:09:54 -0500
commit06a8d665286b3afa854a357a7fda63b2d875feb0 (patch)
treea9f29030f4dfb4c1e50f3518eb4b90d1c91e86d3 /pkgs/development/libraries/boehm-gc/default.nix
parent17bdefd1425dc91f77b4645e858992d944917bb2 (diff)
parent133b4658dfa1da5ae5e56f36ab39e5b12cfdb751 (diff)
downloadnixlib-06a8d665286b3afa854a357a7fda63b2d875feb0.tar
nixlib-06a8d665286b3afa854a357a7fda63b2d875feb0.tar.gz
nixlib-06a8d665286b3afa854a357a7fda63b2d875feb0.tar.bz2
nixlib-06a8d665286b3afa854a357a7fda63b2d875feb0.tar.lz
nixlib-06a8d665286b3afa854a357a7fda63b2d875feb0.tar.xz
nixlib-06a8d665286b3afa854a357a7fda63b2d875feb0.tar.zst
nixlib-06a8d665286b3afa854a357a7fda63b2d875feb0.zip
Merge pull request #33603 from obsidiansystems/cross-check
stdenv: Force `doCheck` to be false when we are cross compiling
Diffstat (limited to 'pkgs/development/libraries/boehm-gc/default.nix')
-rw-r--r--pkgs/development/libraries/boehm-gc/default.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/development/libraries/boehm-gc/default.nix b/pkgs/development/libraries/boehm-gc/default.nix
index 421d7072397b..9a01cdfe8749 100644
--- a/pkgs/development/libraries/boehm-gc/default.nix
+++ b/pkgs/development/libraries/boehm-gc/default.nix
@@ -20,7 +20,7 @@ stdenv.mkDerivation rec {
     [ "--enable-cplusplus" ]
     ++ lib.optional enableLargeConfig "--enable-large-config";
 
-  doCheck = stdenv.buildPlatform == stdenv.hostPlatform;
+  doCheck = true; # not cross;
 
   # Don't run the native `strip' when cross-compiling.
   dontStrip = hostPlatform != buildPlatform;