mirror of
https://git.yoctoproject.org/poky
synced 2026-01-29 21:08:42 +01:00
We've been removing PR values from recipes at upgrade time for a while. In general anyone maintaining a binary distro would end up having to curate these themselves so the values in OE-Core aren't really that useful anymore. In many ways it makes sense to clear out the remaining ones (which are mostly for 'config' recipes that are unlikely to increase in PV) and leave a clean slate for anyone implementing a binary distro config. References are left in meta-selftest since the tests there do involve them and their removal upon upgrade. (From OE-Core rev: d4c346e8ab8f3cae25d1b01c7331ed9f6d4f96ef) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
72 lines
1.5 KiB
BlitzBasic
72 lines
1.5 KiB
BlitzBasic
#
|
|
# Copyright (C) 2008 OpenedHand Ltd.
|
|
#
|
|
|
|
SUMMARY = "Profiling tools"
|
|
|
|
|
|
PACKAGE_ARCH = "${MACHINE_ARCH}"
|
|
|
|
inherit packagegroup
|
|
|
|
PROFILE_TOOLS_X = ""
|
|
# sysprof doesn't support aarch64 and nios2
|
|
PROFILE_TOOLS_X:aarch64 = ""
|
|
PROFILE_TOOLS_X:nios2 = ""
|
|
PROFILE_TOOLS_SYSTEMD = "${@bb.utils.contains('DISTRO_FEATURES', 'systemd', 'systemd-analyze', '', d)}"
|
|
|
|
RRECOMMENDS:${PN} = "\
|
|
${PERF} \
|
|
blktrace \
|
|
${PROFILE_TOOLS_X} \
|
|
${PROFILE_TOOLS_SYSTEMD} \
|
|
"
|
|
|
|
PROFILETOOLS = "\
|
|
powertop \
|
|
"
|
|
PERF = "perf"
|
|
PERF:libc-musl = ""
|
|
PERF:libc-musl:arm = "perf"
|
|
PERF:riscv32 = ""
|
|
|
|
# systemtap needs elfutils which is not fully buildable on some arches/libcs
|
|
SYSTEMTAP = "systemtap"
|
|
SYSTEMTAP:libc-musl = ""
|
|
SYSTEMTAP:nios2 = ""
|
|
SYSTEMTAP:riscv32 = ""
|
|
|
|
LTTNGTOOLS = "lttng-tools"
|
|
LTTNGTOOLS:arc = ""
|
|
LTTNGTOOLS:riscv32 = ""
|
|
|
|
BABELTRACE = "babeltrace"
|
|
BABELTRACE2 = "babeltrace2"
|
|
|
|
# valgrind does not work on the following configurations/architectures
|
|
|
|
VALGRIND = "valgrind"
|
|
VALGRIND:libc-musl = ""
|
|
VALGRIND:mipsarch = ""
|
|
VALGRIND:nios2 = ""
|
|
VALGRIND:arc = ""
|
|
VALGRIND:armv4 = ""
|
|
VALGRIND:armv5 = ""
|
|
VALGRIND:armv6 = ""
|
|
VALGRIND:armeb = ""
|
|
VALGRIND:aarch64 = ""
|
|
VALGRIND:riscv64 = ""
|
|
VALGRIND:riscv32 = ""
|
|
VALGRIND:powerpc = "${@bb.utils.contains('TARGET_FPU', 'soft', '', 'valgrind', d)}"
|
|
VALGRIND:linux-gnux32 = ""
|
|
VALGRIND:linux-gnun32 = ""
|
|
|
|
RDEPENDS:${PN} = "\
|
|
${PROFILETOOLS} \
|
|
${LTTNGTOOLS} \
|
|
${BABELTRACE} \
|
|
${BABELTRACE2} \
|
|
${SYSTEMTAP} \
|
|
${VALGRIND} \
|
|
"
|