2019-11-28 11:10:47 +00:00
|
|
|
{ lib, stdenv, kernel, elfutils, python2, python3, perl, newt, slang, asciidoc, xmlto, makeWrapper
|
2021-10-11 23:05:11 +01:00
|
|
|
, docbook_xsl, docbook_xml_dtd_45, libxslt, flex, bison, pkg-config, libunwind, binutils-unwrapped
|
2019-05-03 21:08:18 +01:00
|
|
|
, libiberty, audit, libbfd, libopcodes, openssl, systemtap, numactl
|
2021-06-28 19:19:52 +01:00
|
|
|
, zlib
|
|
|
|
, withGtk ? false, gtk2
|
|
|
|
, withZstd ? true, zstd
|
|
|
|
, withLibcap ? true, libcap
|
2018-02-20 05:17:02 +00:00
|
|
|
}:
|
2012-06-27 21:23:15 +01:00
|
|
|
|
2014-08-08 16:58:34 +01:00
|
|
|
with lib;
|
|
|
|
|
2012-01-05 21:24:51 +00:00
|
|
|
stdenv.mkDerivation {
|
2022-01-10 22:30:11 +00:00
|
|
|
pname = "perf-linux";
|
|
|
|
version = kernel.version;
|
2012-01-05 21:24:51 +00:00
|
|
|
|
2018-04-10 14:37:35 +01:00
|
|
|
inherit (kernel) src;
|
2017-06-12 12:19:42 +01:00
|
|
|
|
2012-01-05 21:24:51 +00:00
|
|
|
preConfigure = ''
|
|
|
|
cd tools/perf
|
2018-02-20 22:02:39 +00:00
|
|
|
|
|
|
|
substituteInPlace Makefile \
|
|
|
|
--replace /usr/include/elfutils $elfutils/include/elfutils
|
|
|
|
|
|
|
|
for x in util/build-id.c util/dso.c; do
|
|
|
|
substituteInPlace $x --replace /usr/lib/debug /run/current-system/sw/lib/debug
|
|
|
|
done
|
|
|
|
|
2018-04-10 14:37:35 +01:00
|
|
|
if [ -f bash_completion ]; then
|
|
|
|
sed -i 's,^have perf,_have perf,' bash_completion
|
|
|
|
fi
|
2012-01-05 21:24:51 +00:00
|
|
|
'';
|
|
|
|
|
2018-04-10 14:37:35 +01:00
|
|
|
makeFlags = ["prefix=$(out)" "WERROR=0"] ++ kernel.makeFlags;
|
|
|
|
|
2018-05-13 02:08:35 +01:00
|
|
|
hardeningDisable = [ "format" ];
|
|
|
|
|
2012-01-06 17:04:32 +00:00
|
|
|
# perf refers both to newt and slang
|
2018-04-10 14:37:35 +01:00
|
|
|
nativeBuildInputs = [
|
|
|
|
asciidoc xmlto docbook_xsl docbook_xml_dtd_45 libxslt
|
2021-01-19 06:50:56 +00:00
|
|
|
flex bison libiberty audit makeWrapper pkg-config python3
|
2018-04-10 14:37:35 +01:00
|
|
|
];
|
|
|
|
buildInputs = [
|
|
|
|
elfutils newt slang libunwind libbfd zlib openssl systemtap.stapBuild numactl
|
2019-11-28 11:10:47 +00:00
|
|
|
libopcodes python3 perl
|
2021-01-15 14:45:37 +00:00
|
|
|
] ++ lib.optional withGtk gtk2
|
2021-06-28 19:19:52 +01:00
|
|
|
++ (if (versionAtLeast kernel.version "4.19") then [ python3 ] else [ python2 ])
|
|
|
|
++ lib.optional withZstd zstd
|
|
|
|
++ lib.optional withLibcap libcap;
|
2012-01-06 17:45:53 +00:00
|
|
|
|
2015-09-03 21:32:36 +01:00
|
|
|
# Note: we don't add elfutils to buildInputs, since it provides a
|
|
|
|
# bad `ld' and other stuff.
|
2019-10-30 02:23:29 +00:00
|
|
|
NIX_CFLAGS_COMPILE = toString [
|
|
|
|
"-Wno-error=cpp"
|
|
|
|
"-Wno-error=bool-compare"
|
|
|
|
"-Wno-error=deprecated-declarations"
|
|
|
|
"-Wno-error=stringop-truncation"
|
|
|
|
];
|
2014-11-26 22:37:50 +00:00
|
|
|
|
2020-01-30 12:05:57 +00:00
|
|
|
postPatch = ''
|
2021-06-28 19:19:52 +01:00
|
|
|
patchShebangs scripts
|
2020-01-30 12:05:57 +00:00
|
|
|
'';
|
|
|
|
|
2018-04-25 04:20:18 +01:00
|
|
|
doCheck = false; # requires "sparse"
|
|
|
|
doInstallCheck = false; # same
|
|
|
|
|
2018-02-20 22:26:36 +00:00
|
|
|
separateDebugInfo = true;
|
2019-11-05 01:10:31 +00:00
|
|
|
installFlags = [ "install" "install-man" "ASCIIDOC8=1" "prefix=$(out)" ];
|
2012-01-06 16:45:14 +00:00
|
|
|
|
2017-07-23 15:16:11 +01:00
|
|
|
preFixup = ''
|
2021-10-11 23:05:11 +01:00
|
|
|
# pull in 'objdump' into PATH to make annotations work
|
2017-07-23 15:16:11 +01:00
|
|
|
wrapProgram $out/bin/perf \
|
2021-10-11 23:05:11 +01:00
|
|
|
--prefix PATH : "${binutils-unwrapped}/bin"
|
2017-07-23 15:16:11 +01:00
|
|
|
'';
|
|
|
|
|
2012-01-05 21:24:51 +00:00
|
|
|
meta = {
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://perf.wiki.kernel.org/";
|
2012-01-05 21:24:51 +00:00
|
|
|
description = "Linux tools to profile with performance counters";
|
2021-01-15 14:45:37 +00:00
|
|
|
maintainers = with lib.maintainers; [viric];
|
|
|
|
platforms = with lib.platforms; linux;
|
2021-05-25 08:49:35 +01:00
|
|
|
broken = kernel.kernelOlder "5";
|
2012-01-05 21:24:51 +00:00
|
|
|
};
|
|
|
|
}
|