xref: /OK3568_Linux_fs/yocto/meta-openembedded/meta-oe/recipes-extended/libleak/libleak_git.bb (revision 4882a59341e53eb6f0b4789bf948001014eff981)
1# Copyright (C) 2021 Khem Raj <raj.khem@gmail.com>
2# Released under the MIT license (see COPYING.MIT for the terms)
3
4SUMMARY = "libleak detects memory leak by hooking memory functions (e.g. malloc) by LD_PRELOAD"
5HOMEPAGE = "https://github.com/WuBingzheng/libleak"
6LICENSE = "GPL-2.0-only"
7LIC_FILES_CHKSUM = "file://README.md;beginline=18;endline=21;md5=de4f705f12cdedbe452b2c3524572b03"
8
9DEPENDS += "libbacktrace"
10
11SRC_URI = "gitsm://github.com/WuBingzheng/libleak;protocol=https;branch=master \
12           file://0001-respect-environment-variables.patch \
13          "
14
15PV = "1.0+git${SRCPV}"
16SRCREV = "ea2bb608ae25701692269a37d39d77e966b887ac"
17
18S = "${WORKDIR}/git"
19
20do_configure () {
21	:
22}
23
24do_compile () {
25	oe_runmake
26}
27
28do_install () {
29	install -Dm 0755 ${B}/libleak.so ${D}${libdir}/libleak.so
30}
31
32FILES_SOLIBSDEV = ""
33
34FILES:${PN} += "${libdir}/libleak.so"
35
36# libunwind does not support RISCV yet
37COMPATIBLE_HOST:riscv64 = "null"
38COMPATIBLE_HOST:riscv32 = "null"
39