diff options
author | Ross Burton <ross.burton@intel.com> | 2018-07-17 17:39:04 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2018-07-24 11:52:26 +0100 |
commit | fde3ca8b7340f19f53e4939cef5fb2753a158034 (patch) | |
tree | a7f1a82da3a3e688cb54ed41d474ed6f8bfa05ed /meta/recipes-devtools/strace/strace_4.23.bb | |
parent | 6494ab4ab361a53d739caa47fb48ddac44278494 (diff) | |
download | poky-fde3ca8b7340f19f53e4939cef5fb2753a158034.tar.gz |
strace: upgrade 4.22 -> 4.23
(From OE-Core rev: 71994715714076e7f4dfb29c91da0a4e293b7e53)
Signed-off-by: Ross Burton <ross.burton@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-devtools/strace/strace_4.23.bb')
-rw-r--r-- | meta/recipes-devtools/strace/strace_4.23.bb | 62 |
1 files changed, 62 insertions, 0 deletions
diff --git a/meta/recipes-devtools/strace/strace_4.23.bb b/meta/recipes-devtools/strace/strace_4.23.bb new file mode 100644 index 0000000000..0c159fc6f6 --- /dev/null +++ b/meta/recipes-devtools/strace/strace_4.23.bb | |||
@@ -0,0 +1,62 @@ | |||
1 | SUMMARY = "System call tracing tool" | ||
2 | HOMEPAGE = "http://strace.io" | ||
3 | SECTION = "console/utils" | ||
4 | LICENSE = "BSD" | ||
5 | LIC_FILES_CHKSUM = "file://COPYING;md5=6ddb91734b9c705f3e87362e97e5f64b" | ||
6 | |||
7 | SRC_URI = "https://strace.io/files/${PV}/strace-${PV}.tar.xz \ | ||
8 | file://disable-git-version-gen.patch \ | ||
9 | file://more-robust-test-for-m32-mx32-compile-support.patch \ | ||
10 | file://update-gawk-paths.patch \ | ||
11 | file://Makefile-ptest.patch \ | ||
12 | file://run-ptest \ | ||
13 | file://0001-Fix-build-when-using-non-glibc-libc-implementation-o.patch \ | ||
14 | file://mips-SIGEMT.patch \ | ||
15 | file://0001-caps-abbrev.awk-fix-gawk-s-path.patch \ | ||
16 | file://0001-tests-sigaction-Check-for-mips-and-alpha-before-usin.patch \ | ||
17 | " | ||
18 | SRC_URI[md5sum] = "fad4bba0947553cef34d46a9fd78f039" | ||
19 | SRC_URI[sha256sum] = "7860a6965f1dd832747bd8281a04738274398d32c56e9fbd0a68b1bb9ec09aad" | ||
20 | |||
21 | inherit autotools ptest bluetooth | ||
22 | |||
23 | PACKAGECONFIG_class-target ??= "\ | ||
24 | ${@bb.utils.contains('DISTRO_FEATURES', 'bluetooth', 'bluez', '', d)} \ | ||
25 | " | ||
26 | |||
27 | PACKAGECONFIG[bluez] = "ac_cv_header_bluetooth_bluetooth_h=yes,ac_cv_header_bluetooth_bluetooth_h=no,${BLUEZ}" | ||
28 | PACKAGECONFIG[libunwind] = "--with-libunwind,--without-libunwind,libunwind" | ||
29 | |||
30 | EXTRA_OECONF += "--enable-mpers=no" | ||
31 | |||
32 | CFLAGS_append_libc-musl = " -Dsigcontext_struct=sigcontext" | ||
33 | |||
34 | TESTDIR = "tests" | ||
35 | |||
36 | do_install_append() { | ||
37 | # We don't ship strace-graph here because it needs perl | ||
38 | rm ${D}${bindir}/strace-graph | ||
39 | } | ||
40 | |||
41 | do_compile_ptest() { | ||
42 | oe_runmake -C ${TESTDIR} buildtest-TESTS | ||
43 | } | ||
44 | |||
45 | do_install_ptest() { | ||
46 | oe_runmake -C ${TESTDIR} install-ptest BUILDDIR=${B} DESTDIR=${D}${PTEST_PATH} TESTDIR=${TESTDIR} | ||
47 | sed -i -e '/^src/s/strace.*[1-9]/ptest/' \ | ||
48 | -e 's,--sysroot=${STAGING_DIR_TARGET},,g' \ | ||
49 | -e 's|${DEBUG_PREFIX_MAP}||g' \ | ||
50 | -e 's:${HOSTTOOLS_DIR}/::g' \ | ||
51 | -e 's:${RECIPE_SYSROOT_NATIVE}::g' \ | ||
52 | -e 's:${RECIPE_SYSROOT}::g' \ | ||
53 | -e 's:${BASE_WORKDIR}/${MULTIMACH_TARGET_SYS}::g' \ | ||
54 | -e '/^DEB_CHANGELOGTIME/d' \ | ||
55 | -e '/^RPM_CHANGELOGTIME/d' \ | ||
56 | ${D}/${PTEST_PATH}/${TESTDIR}/Makefile | ||
57 | } | ||
58 | |||
59 | RDEPENDS_${PN}-ptest += "make coreutils grep gawk sed" | ||
60 | |||
61 | BBCLASSEXTEND = "native" | ||
62 | TOOLCHAIN = "gcc" | ||