544fcc772f
ply is a light-weight dynamic tracer for Linux. By means of using the BPF it can attach probes to the linux kernel (e. g. kprobes). It's a small alternative to LLVM based tracers for embedded systems. Project page: https://github.com/wkz/ply/releases Documentation can be found here: https://wkz.github.io/ply/ Tested with beaglebone_defconfig (uClibc-ng as well as glibc) Signed-off-by: Andreas Klinger <ak@it-klinger.de> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
15 lines
369 B
Makefile
15 lines
369 B
Makefile
################################################################################
|
|
#
|
|
# ply
|
|
#
|
|
################################################################################
|
|
|
|
PLY_VERSION = 2.1.1
|
|
PLY_SITE = $(call github,wkz,ply,$(PLY_VERSION))
|
|
PLY_AUTORECONF = YES
|
|
PLY_LICENSE = GPL-2.0
|
|
PLY_LICENSE_FILES = COPYING
|
|
PLY_INSTALL_STAGING = YES
|
|
|
|
$(eval $(autotools-package))
|