2019-11-28 11:10:47 +00:00
|
|
|
{ lib, stdenv, kernel, elfutils, python2, python3, perl, newt, slang, asciidoc, xmlto, makeWrapper
|
2021-01-19 06:50:56 +00:00
|
|
|
, docbook_xsl, docbook_xml_dtd_45, libxslt, flex, bison, pkg-config, libunwind, binutils
|
2019-05-03 20:08:18 +00:00
|
|
|
, libiberty, audit, libbfd, libopcodes, openssl, systemtap, numactl
|
2018-02-20 05:17:02 +00:00
|
|
|
, zlib, withGtk ? false, gtk2 ? null
|
|
|
|
}:
|
2012-06-27 20:23:15 +00:00
|
|
|
|
2014-08-08 15:58:34 +00:00
|
|
|
with lib;
|
|
|
|
|
2016-09-13 17:42:55 +00:00
|
|
|
assert withGtk -> gtk2 != null;
|
2014-08-08 15:58:34 +00:00
|
|
|
assert versionAtLeast kernel.version "3.12";
|
2012-01-05 21:24:51 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation {
|
2014-01-05 01:57:21 +00:00
|
|
|
name = "perf-linux-${kernel.version}";
|
2012-01-05 21:24:51 +00:00
|
|
|
|
2018-04-10 13:37:35 +00:00
|
|
|
inherit (kernel) src;
|
2017-06-12 11:19:42 +00: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 13:37:35 +00: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 13:37:35 +00:00
|
|
|
makeFlags = ["prefix=$(out)" "WERROR=0"] ++ kernel.makeFlags;
|
|
|
|
|
2018-05-13 01:08:35 +00:00
|
|
|
hardeningDisable = [ "format" ];
|
|
|
|
|
2012-01-06 17:04:32 +00:00
|
|
|
# perf refers both to newt and slang
|
2018-04-10 13:37:35 +00: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 13:37:35 +00: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
|
2019-11-28 11:10:47 +00:00
|
|
|
++ (if (versionAtLeast kernel.version "4.19") then [ python3 ] else [ python2 ]);
|
2012-01-06 17:45:53 +00:00
|
|
|
|
2015-09-03 20:32:36 +00: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"
|
|
|
|
"-DOBJDUMP_PATH=\"${binutils}/bin/objdump\""
|
|
|
|
"-Wno-error=stringop-truncation"
|
|
|
|
];
|
2014-11-26 22:37:50 +00:00
|
|
|
|
2020-01-30 12:05:57 +00:00
|
|
|
postPatch = ''
|
|
|
|
patchShebangs scripts/bpf_helpers_doc.py
|
|
|
|
'';
|
|
|
|
|
2018-04-25 03:20:18 +00: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 14:16:11 +00:00
|
|
|
preFixup = ''
|
|
|
|
wrapProgram $out/bin/perf \
|
|
|
|
--prefix PATH : "${binutils}/bin"
|
|
|
|
'';
|
|
|
|
|
2012-01-05 21:24:51 +00:00
|
|
|
meta = {
|
2020-04-01 01:11:51 +00: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;
|
2012-01-05 21:24:51 +00:00
|
|
|
};
|
|
|
|
}
|