Skip to content

Commit

Permalink
jemalloc: disable tests for pkgsStatic (#265093)
Browse files Browse the repository at this point in the history
  • Loading branch information
yu-re-ka authored Nov 3, 2023
1 parent c80e20c commit 38cc0ce
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion pkgs/development/libraries/jemalloc/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,8 @@ stdenv.mkDerivation rec {
env.NIX_CFLAGS_COMPILE = lib.optionalString stdenv.isDarwin "-Wno-error=array-bounds";
env.NIX_LDFLAGS = lib.optionalString (stdenv.cc.libcxx != null) "-l${stdenv.cc.libcxx.cxxabi.libName}";

doCheck = true;
# Tries to link test binaries binaries dynamically and fails
doCheck = !stdenv.hostPlatform.isStatic;

enableParallelBuilding = true;

Expand Down

0 comments on commit 38cc0ce

Please sign in to comment.