2017-07-23 14:16:11 +00: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-01-16 03:28:45 +00:00
|
|
|
, libiberty, libaudit, libbfd
|
2016-09-13 17:42:55 +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-01-15 17:47:08 +00:00
|
|
|
inherit (kernel) src makeFlags;
|
2017-06-12 11:19:42 +00:00
|
|
|
|
2012-01-05 21:24:51 +00:00
|
|
|
preConfigure = ''
|
|
|
|
cd tools/perf
|
2012-01-06 16:45:14 +00:00
|
|
|
sed -i s,/usr/include/elfutils,$elfutils/include/elfutils, Makefile
|
2013-07-09 18:53:45 +00:00
|
|
|
[ -f bash_completion ] && sed -i 's,^have perf,_have perf,' bash_completion
|
2012-01-06 16:45:14 +00:00
|
|
|
export makeFlags="DESTDIR=$out $makeFlags"
|
2012-01-05 21:24:51 +00:00
|
|
|
'';
|
|
|
|
|
2012-01-06 17:04:32 +00:00
|
|
|
# perf refers both to newt and slang
|
2016-07-21 15:26:26 +00:00
|
|
|
nativeBuildInputs = [ asciidoc xmlto docbook_xsl docbook_xml_dtd_45 libxslt
|
2017-10-28 19:09:54 +00:00
|
|
|
flex bison libiberty libaudit makeWrapper pkgconfig python perl ];
|
2018-01-16 03:28:45 +00:00
|
|
|
buildInputs = [ elfutils newt slang libunwind libbfd zlib ] ++
|
2016-09-13 17:42:55 +00:00
|
|
|
stdenv.lib.optional withGtk gtk2;
|
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.
|
2017-06-12 11:19:42 +00: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
|
|
|
|
2012-01-06 17:45:53 +00:00
|
|
|
installFlags = "install install-man ASCIIDOC8=1";
|
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 = {
|
|
|
|
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;
|
|
|
|
};
|
|
|
|
}
|