mirror of
https://git.yoctoproject.org/poky
synced 2026-02-09 02:03:04 +01:00
Error: Transaction test error:
file /usr/bin/find-debuginfo conflicts between attempted installs of debugedit-5.1-r0.core2_64 and lib32-debugedit-5.1-r0.core2_32
The differences of find-debuginfo are as follows:
@@ -360,7 +360,7 @@ add_minidebug()
# symbol and NOBITS sections so cannot use --keep-only because that is
# too aggressive. Field $2 is the section name, $3 is the section type
# and $8 are the section flags.
- local remove_sections=`x86_64-poky-linux-readelf -W -S "$debuginfo" \
+ local remove_sections=`i686-pokymllib32-linux-readelf -W -S "$debuginfo" \
| awk '{ if (index($2,".debug_") != 1 \
&& ($3 == "PROGBITS" || $3 == "NOTE" || $3 == "NOBITS") \
&& index($8,"A") == 0) \
(From OE-Core rev: 2bc0fcacf0d33eea59a33d28f7263c90c2bf0823)
Signed-off-by: Wang Mingyu <wangmy@fujitsu.com>
Signed-off-by: Mathieu Dubois-Briand <mathieu.dubois-briand@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
32 lines
1.1 KiB
BlitzBasic
32 lines
1.1 KiB
BlitzBasic
SUMMARY = "Tools for creating debuginfo and source file distributions"
|
|
DESCRIPTION = "debugedit provides programs and scripts for creating \
|
|
debuginfo and source file distributions, collect build-ids and rewrite \
|
|
source paths in DWARF data for debugging, tracing and profiling."
|
|
HOMEPAGE = "https://sourceware.org/debugedit/"
|
|
|
|
LICENSE = "GPL-2.0-only & GPL-3.0-only & LGPL-2.1-only"
|
|
LIC_FILES_CHKSUM = "file://COPYING;md5=59530bdf33659b29e73d4adb9f9f6552 \
|
|
file://COPYING.LIB;md5=2d5025d4aa3495befef8f17206a5b0a1 \
|
|
file://COPYING3;md5=d32239bcb673463ab874e80d47fae504"
|
|
|
|
SRC_URI = "https://sourceware.org/ftp/debugedit/${PV}/debugedit-${PV}.tar.xz \
|
|
"
|
|
|
|
SRC_URI:append:libc-musl = "\
|
|
file://0003-Makefile.am-do-not-update-manual.patch \
|
|
"
|
|
|
|
SRC_URI[sha256sum] = "ee9b688b2ed8fa62551c54cb5dc31aaa05853e7dedbd9e1237c77894ea5e3626"
|
|
|
|
DEPENDS = "elfutils xxhash"
|
|
DEPENDS:append:libc-musl = " musl-legacy-error"
|
|
|
|
inherit pkgconfig autotools multilib_script
|
|
|
|
RDEPENDS:${PN} += "bash elfutils-binutils"
|
|
|
|
BBCLASSEXTEND = "native nativesdk"
|
|
|
|
MULTILIB_SCRIPTS = "${PN}:${bindir}/find-debuginfo"
|
|
|