mirror of
https://git.yoctoproject.org/poky
synced 2026-03-31 20:02:22 +02:00
Undefined symbols in a library can be provided by the application that links to the library, such as `logsink' in libmultipath.so.0. This fix checks the type of object in which the symbol is needed and the existence of the symbol in application, when a symbol cannot be provided by libraries. It prevents false alarm on absence of symbols. (From OE-Core rev: 0dbc895c58a1bb81467a20b154e068806278fc83) Signed-off-by: Yuanjie Huang <yuanjie.huang@windriver.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
20 lines
809 B
BlitzBasic
20 lines
809 B
BlitzBasic
SUMMARY = "Shared library optimisation tool"
|
|
DESCRIPTION = "mklibs produces cut-down shared libraries that contain only the routines required by a particular set of executables."
|
|
HOMEPAGE = "https://launchpad.net/mklibs"
|
|
SECTION = "devel"
|
|
LICENSE = "GPLv2+"
|
|
LIC_FILES_CHKSUM = "file://debian/copyright;md5=98d31037b13d896e33890738ef01af64"
|
|
DEPENDS = "python-native dpkg-native"
|
|
|
|
SRC_URI = "http://ftp.de.debian.org/debian/pool/main/m/mklibs/${BPN}_${PV}.tar.xz \
|
|
file://ac_init_fix.patch\
|
|
file://fix_STT_GNU_IFUNC.patch\
|
|
file://sysrooted-ldso.patch \
|
|
file://avoid-failure-on-symbol-provided-by-application.patch \
|
|
"
|
|
|
|
SRC_URI[md5sum] = "e1dafe5f962caa9dc5f2651c0723812a"
|
|
SRC_URI[sha256sum] = "1db24ae779d21ccfed49f22e49a2b7ee43ec0e9197bc206d81cd02f96e91e125"
|
|
|
|
inherit autotools gettext native pythonnative
|