diff options
author | Ludovic Courtès <ludovic.courtes@inria.fr> | 2017-10-17 11:30:31 +0200 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2017-10-17 13:24:01 +0200 |
commit | 1d484507dce7bfeaa579f49f12a3a00412f807af (patch) | |
tree | 2ad39e4472958257e12be20cb709e3a2b36771be /gnu | |
parent | 5efa0e4d4f25485dcf3c520f9f3db9ef126efdf6 (diff) | |
download | patches-1d484507dce7bfeaa579f49f12a3a00412f807af.tar patches-1d484507dce7bfeaa579f49f12a3a00412f807af.tar.gz |
gnu: perf: Add dependency on libunwind and libnuma.
* gnu/packages/linux.scm (perf)[inputs]: Add NUMACTL and LIBUNWIND.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/linux.scm | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/gnu/packages/linux.scm b/gnu/packages/linux.scm index 103d9ab57d..1099da6fb1 100644 --- a/gnu/packages/linux.scm +++ b/gnu/packages/linux.scm @@ -72,6 +72,7 @@ #:use-module (gnu packages gnuzilla) #:use-module (gnu packages gperf) #:use-module (gnu packages gtk) + #:use-module (gnu packages libunwind) #:use-module (gnu packages libusb) #:use-module (gnu packages man) #:use-module (gnu packages maths) @@ -2527,6 +2528,8 @@ in a digital read-out.") ("python" ,python-2) ;'perf' links against libpython ("elfutils" ,elfutils) ("libiberty" ,libiberty) ;used alongside BDF for symbol demangling + ("libunwind" ,libunwind) ;better stack walking + ("numactl" ,numactl) ;for 'perf bench numa mem' ;; Documentation. ("libxml2" ,libxml2) ;for $XML_CATALOG_FILES |