2021-01-19 22:02:44 +00:00
|
|
|
{ stdenv
|
|
|
|
, lib
|
|
|
|
, fetchFromGitHub
|
|
|
|
, fetchpatch
|
|
|
|
, autoreconfHook
|
|
|
|
, libunwind
|
|
|
|
}:
|
2013-01-28 12:48:35 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2021-01-19 22:02:44 +00:00
|
|
|
pname = "gperftools";
|
2021-10-20 13:48:46 +01:00
|
|
|
version = "2.9.1";
|
2021-01-19 22:02:44 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = pname;
|
|
|
|
repo = pname;
|
|
|
|
rev = "${pname}-${version}";
|
2021-10-20 13:48:46 +01:00
|
|
|
sha256 = "sha256-loUlC6mtR3oyS5opSmicCnfUqcefSk8+kKDcHNmC/oo=";
|
2013-01-28 12:48:35 +00:00
|
|
|
};
|
|
|
|
|
2020-08-05 08:28:21 +01:00
|
|
|
patches = [
|
|
|
|
# Add the --disable-general-dynamic-tls configure option:
|
|
|
|
# https://bugzilla.redhat.com/show_bug.cgi?id=1483558
|
|
|
|
(fetchpatch {
|
|
|
|
url = "https://src.fedoraproject.org/rpms/gperftools/raw/f62d87a34f56f64fb8eb86727e34fbc2d3f5294a/f/gperftools-2.7.90-disable-generic-dynamic-tls.patch";
|
|
|
|
sha256 = "02falhpaqkl27hl1dib4yvmhwsddmgbw0krb46w31fyf3awb2ydv";
|
|
|
|
})
|
|
|
|
];
|
|
|
|
|
|
|
|
nativeBuildInputs = [ autoreconfHook ];
|
|
|
|
|
2020-06-30 10:03:01 +01:00
|
|
|
# tcmalloc uses libunwind in a way that works correctly only on non-ARM linux
|
2021-01-19 20:40:13 +00:00
|
|
|
buildInputs = lib.optional (stdenv.isLinux && !(stdenv.isAarch64 || stdenv.isAarch32)) libunwind;
|
2013-01-28 12:48:35 +00:00
|
|
|
|
2020-08-05 08:28:21 +01:00
|
|
|
# Disable general dynamic TLS on AArch to support dlopen()'ing the library:
|
|
|
|
# https://bugzilla.redhat.com/show_bug.cgi?id=1483558
|
2021-01-19 20:40:13 +00:00
|
|
|
configureFlags = lib.optional (stdenv.isAarch32 || stdenv.isAarch64)
|
2020-08-05 08:28:21 +01:00
|
|
|
"--disable-general-dynamic-tls";
|
|
|
|
|
2021-01-19 20:40:13 +00:00
|
|
|
prePatch = lib.optionalString stdenv.isDarwin ''
|
2015-07-23 23:47:16 +01:00
|
|
|
substituteInPlace Makefile.am --replace stdc++ c++
|
|
|
|
'';
|
|
|
|
|
2021-01-19 20:40:13 +00:00
|
|
|
NIX_CFLAGS_COMPILE = lib.optionalString stdenv.isDarwin
|
2021-01-19 18:22:29 +00:00
|
|
|
"-D_XOPEN_SOURCE";
|
2017-09-18 21:20:57 +01:00
|
|
|
|
2013-11-08 22:45:47 +00:00
|
|
|
# some packages want to link to the static tcmalloc_minimal
|
|
|
|
# to drop the runtime dependency on gperftools
|
|
|
|
dontDisableStatic = true;
|
|
|
|
|
2013-01-28 12:48:35 +00:00
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
2021-01-19 20:40:13 +00:00
|
|
|
meta = with lib; {
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://github.com/gperftools/gperftools";
|
2013-01-28 12:48:35 +00:00
|
|
|
description = "Fast, multi-threaded malloc() and nifty performance analysis tools";
|
2014-09-14 02:55:29 +01:00
|
|
|
platforms = with platforms; linux ++ darwin;
|
|
|
|
license = licenses.bsd3;
|
2019-01-26 10:01:09 +00:00
|
|
|
maintainers = with maintainers; [ vcunat ];
|
2013-01-28 12:48:35 +00:00
|
|
|
};
|
|
|
|
}
|