summaryrefslogtreecommitdiffstats
path: root/meta/recipes-devtools/strace/strace_5.13.bb
diff options
context:
space:
mode:
authorRichard Purdie <richard.purdie@linuxfoundation.org>2021-08-04 17:58:43 +0100
committerRichard Purdie <richard.purdie@linuxfoundation.org>2021-08-05 08:53:41 +0100
commitbc01962bb869b249dce01e8f82f956316fca27f6 (patch)
treeccc1595b91fa12fcc16537bfc46c74f69d0d48ac /meta/recipes-devtools/strace/strace_5.13.bb
parent5f3d28c2a27e352bdeebd572d4a8408aa8990e11 (diff)
downloadpoky-bc01962bb869b249dce01e8f82f956316fca27f6.tar.gz
strace: Upgrade 5.12 -> 5.13
This includes changes to work with glibc 2.34. (From OE-Core rev: 58cdb3ff8689c5e87769eb53d154a395492cdeb5) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-devtools/strace/strace_5.13.bb')
-rw-r--r--meta/recipes-devtools/strace/strace_5.13.bb56
1 files changed, 56 insertions, 0 deletions
diff --git a/meta/recipes-devtools/strace/strace_5.13.bb b/meta/recipes-devtools/strace/strace_5.13.bb
new file mode 100644
index 0000000000..7d93f2da98
--- /dev/null
+++ b/meta/recipes-devtools/strace/strace_5.13.bb
@@ -0,0 +1,56 @@
1SUMMARY = "System call tracing tool"
2HOMEPAGE = "http://strace.io"
3DESCRIPTION = "strace is a diagnostic, debugging and instructional userspace utility for Linux. It is used to monitor and tamper with interactions between processes and the Linux kernel, which include system calls, signal deliveries, and changes of process state."
4SECTION = "console/utils"
5LICENSE = "LGPL-2.1+ & GPL-2+"
6LIC_FILES_CHKSUM = "file://COPYING;md5=318cfc887fc8723f4e9d4709b55e065b"
7
8SRC_URI = "https://strace.io/files/${PV}/strace-${PV}.tar.xz \
9 file://update-gawk-paths.patch \
10 file://Makefile-ptest.patch \
11 file://run-ptest \
12 file://mips-SIGEMT.patch \
13 file://0001-caps-abbrev.awk-fix-gawk-s-path.patch \
14 file://ptest-spacesave.patch \
15 file://uintptr_t.patch \
16 file://0001-strace-fix-reproducibilty-issues.patch \
17 "
18SRC_URI[sha256sum] = "5acc34888b9d510ad6ac915d4a8df08f51cf1ae920ea24649f6a4bb984d0b656"
19
20inherit autotools ptest
21
22PACKAGECONFIG:class-target ??= "\
23 ${@bb.utils.contains('DISTRO_FEATURES', 'bluetooth', 'bluez', '', d)} \
24"
25
26PACKAGECONFIG[bluez] = "ac_cv_header_bluetooth_bluetooth_h=yes,ac_cv_header_bluetooth_bluetooth_h=no,bluez5"
27PACKAGECONFIG[libunwind] = "--with-libunwind,--without-libunwind,libunwind"
28
29EXTRA_OECONF += "--enable-mpers=no --disable-gcc-Werror"
30
31CFLAGS:append:libc-musl = " -Dsigcontext_struct=sigcontext"
32
33TESTDIR = "tests"
34PTEST_BUILD_HOST_PATTERN = "^(DEB_CHANGELOGTIME|RPM_CHANGELOGTIME|WARN_CFLAGS_FOR_BUILD|LDFLAGS_FOR_BUILD)"
35
36do_compile_ptest() {
37 oe_runmake ${PARALLEL_MAKE} -C ${TESTDIR} buildtest-TESTS
38}
39
40do_install_ptest() {
41 oe_runmake -C ${TESTDIR} install-ptest BUILDDIR=${B} DESTDIR=${D}${PTEST_PATH} TESTDIR=${TESTDIR}
42 mkdir -p ${D}${PTEST_PATH}/build-aux
43 mkdir -p ${D}${PTEST_PATH}/src
44 install -m 755 ${S}/build-aux/test-driver ${D}${PTEST_PATH}/build-aux/
45 install -m 644 ${B}/src/config.h ${D}${PTEST_PATH}/src/
46 sed -i -e '/^src/s/strace.*[0-9]/ptest/' ${D}/${PTEST_PATH}/${TESTDIR}/Makefile
47}
48
49RDEPENDS:${PN}-ptest += "make coreutils grep gawk sed"
50
51RDEPENDS:${PN}-ptest:append:libc-glibc = "\
52 locale-base-en-us.iso-8859-1 \
53"
54
55BBCLASSEXTEND = "native"
56TOOLCHAIN = "gcc"