mirror of
git://git.openembedded.org/meta-openembedded
synced 2026-08-14 05:35:28 +00:00
The command "bitbake universe -c fetch" currently throws a ton of warnings as there are many 'impossible' dependencies. In some cases these variants may never have worked and were just added by copy and paste of recipes. In some cases they once clearly did work but became broken somewhere along the way. Users may also be carrying local bbappend files which add further BBCLASSEXTEND. Having universe fetch work without warnings is desireable so clean up the broken variants. Anyone actually needing something dropped here can propose adding it and the correct functional dependencies back quite easily. This also then ensures we're not carrying or fixing things nobody uses. Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org> Signed-off-by: Khem Raj <raj.khem@gmail.com> (cherry picked from commit 9962d57f7c235873de0a0bb192b5f56747762fc7) Signed-off-by: Armin Kuster <akuster808@gmail.com>
33 lines
1.2 KiB
BlitzBasic
33 lines
1.2 KiB
BlitzBasic
SUMMARY = "Heap memory profiler for Linux"
|
|
DESCRIPTION = "Heaptrack traces all memory allocations and annotates these \
|
|
events with stack traces. Dedicated analysis tools then allow you to interpret \
|
|
the heap memory profile to find hotspots to reduce memory, leaks, allocation \
|
|
hotspots and temporary allocations"
|
|
HOMEPAGE = "https://phabricator.kde.org/source/heaptrack/"
|
|
LICENSE = "LGPL-2.1-only"
|
|
LIC_FILES_CHKSUM = "file://COPYING;md5=4fbd65380cdd255951079008b364516c"
|
|
|
|
DEPENDS = "zlib boost libunwind elfutils"
|
|
|
|
SRC_URI = "git://github.com/KDE/heaptrack.git;protocol=https;branch=master \
|
|
file://0001-libheaptrack-Replace-__pid_t-with-pid_t.patch \
|
|
file://0002-heaptrack_inject-Include-dlfcn.h-for-dlopen-dlclose.patch \
|
|
file://0003-heaptrack_preload-Make-noexcept-attribute-conditiona.patch \
|
|
file://0004-backtrace-Always-include-stdint.h.patch \
|
|
file://0001-track-Check-for-unw_set_caching_policy-before-using.patch \
|
|
"
|
|
|
|
SRCREV = "bc9e3744bcc47de978673d1e382f4125a1ab5fa8"
|
|
|
|
S = "${WORKDIR}/git"
|
|
|
|
inherit cmake
|
|
|
|
EXTRA_OECMAKE += "-DHEAPTRACK_BUILD_GUI=OFF"
|
|
|
|
# libunwind is not yet ported to RISCV
|
|
COMPATIBLE_HOST:riscv32 = "null"
|
|
COMPATIBLE_HOST:riscv64 = "null"
|
|
|
|
BBCLASSEXTEND = "native"
|