2017-07-23 15:16:11 +01:00
|
|
|
{ lib, stdenv, kernel, elfutils, python, perl, newt, slang, asciidoc, xmlto, makeWrapper
|
2015-03-11 17:14:57 +00:00
|
|
|
, docbook_xsl, docbook_xml_dtd_45, libxslt, flex, bison, pkgconfig, libunwind, binutils
|
2018-07-17 21:11:16 +01:00
|
|
|
, libiberty, audit, libbfd, openssl, systemtap, numactl
|
2018-02-20 05:17:02 +00:00
|
|
|
, zlib, withGtk ? false, gtk2 ? null
|
|
|
|
}:
|
2012-06-27 21:23:15 +01:00
|
|
|
|
2014-08-08 16:58:34 +01:00
|
|
|
with lib;
|
|
|
|
|
2016-09-13 18:42:55 +01:00
|
|
|
assert withGtk -> gtk2 != null;
|
2014-08-08 16:58:34 +01: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 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
|
2018-07-17 21:11:16 +01:00
|
|
|
flex bison libiberty audit makeWrapper pkgconfig python perl
|
2018-04-10 14:37:35 +01:00
|
|
|
];
|
|
|
|
buildInputs = [
|
|
|
|
elfutils newt slang libunwind libbfd zlib openssl systemtap.stapBuild numactl
|
|
|
|
] ++ stdenv.lib.optional withGtk gtk2;
|
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.
|
2017-06-12 12:19:42 +01:00
|
|
|
NIX_CFLAGS_COMPILE =
|
|
|
|
[ "-Wno-error=cpp"
|
|
|
|
"-Wno-error=bool-compare"
|
|
|
|
"-Wno-error=deprecated-declarations"
|
|
|
|
"-DOBJDUMP_PATH=\"${binutils}/bin/objdump\""
|
|
|
|
]
|
2017-02-03 11:37:40 +00:00
|
|
|
# gcc before 6 doesn't know these options
|
2017-02-04 19:58:47 +00:00
|
|
|
++ stdenv.lib.optionals (hasPrefix "gcc-6" stdenv.cc.cc.name) [
|
2017-02-03 11:37:40 +00:00
|
|
|
"-Wno-error=unused-const-variable" "-Wno-error=misleading-indentation"
|
|
|
|
];
|
2014-11-26 22:37:50 +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;
|
2018-04-10 14:37:35 +01: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 = ''
|
|
|
|
wrapProgram $out/bin/perf \
|
|
|
|
--prefix PATH : "${binutils}/bin"
|
|
|
|
'';
|
|
|
|
|
2012-01-05 21:24:51 +00:00
|
|
|
meta = {
|
|
|
|
homepage = https://perf.wiki.kernel.org/;
|
|
|
|
description = "Linux tools to profile with performance counters";
|
|
|
|
maintainers = with stdenv.lib.maintainers; [viric];
|
|
|
|
platforms = with stdenv.lib.platforms; linux;
|
|
|
|
};
|
|
|
|
}
|