Merge #279623: gperftools: Add runtime perl dependency

...into staging
This commit is contained in:
Vladimír Čunát 2024-01-16 05:54:00 +01:00
commit 820fb6441d
No known key found for this signature in database
GPG key ID: E747DF1F9575A3AA

View file

@ -4,6 +4,7 @@
, fetchpatch
, autoreconfHook
, libunwind
, perl
}:
stdenv.mkDerivation rec {
@ -29,7 +30,8 @@ stdenv.mkDerivation rec {
nativeBuildInputs = [ autoreconfHook ];
# tcmalloc uses libunwind in a way that works correctly only on non-ARM dynamically linked linux
buildInputs = lib.optional (stdenv.isLinux && !(stdenv.hostPlatform.isAarch || stdenv.hostPlatform.isStatic )) libunwind;
buildInputs = [ perl ]
++ lib.optional (stdenv.isLinux && !(stdenv.hostPlatform.isAarch || stdenv.hostPlatform.isStatic )) libunwind;
# Disable general dynamic TLS on AArch to support dlopen()'ing the library:
# https://bugzilla.redhat.com/show_bug.cgi?id=1483558