mirror of
https://github.com/thead-yocto-mirror/meta-openembedded
synced 2026-09-04 05:04:39 +02:00
instrumentation code uses atomic ops on 64bit variables, which leads to build failures on 32bit targets using libtorrent because of missing builtins on riscv32/gcc /usr/lib/libtorrent.so: undefined reference to `__sync_add_and_fetch_8' /usr/lib/libtorrent.so: undefined reference to `__sync_fetch_and_and_8' The developer added a "--disable-instrumentation" switch which skips the build of the offending codepaths in libtorrent. Signed-off-by: Khem Raj <raj.khem@gmail.com>
33 lines
951 B
BlitzBasic
33 lines
951 B
BlitzBasic
DESCRIPTION = "libTorrent is a BitTorrent library written in C++ for *nix, \
|
|
with a focus on high performance and good code."
|
|
HOMEPAGE = "http://libtorrent.rakshasa.no/"
|
|
LICENSE = "GPL-2.0"
|
|
LIC_FILES_CHKSUM = "file://COPYING;md5=393a5ca445f6965873eca0259a17f833"
|
|
|
|
DEPENDS = "zlib libsigc++-2.0 openssl cppunit"
|
|
|
|
SRC_URI = "git://github.com/rakshasa/libtorrent \
|
|
file://don-t-run-code-while-configuring-package.patch \
|
|
"
|
|
SRCREV = "756f70010779927dc0691e1e722ed433d5d295e1"
|
|
|
|
PV = "0.13.8"
|
|
|
|
S = "${WORKDIR}/git"
|
|
|
|
PACKAGECONFIG ??= "instrumentation"
|
|
|
|
PACKAGECONFIG_remove_mipsarch = "instrumentation"
|
|
PACKAGECONFIG_remove_powerpc = "instrumentation"
|
|
PACKAGECONFIG_remove_riscv32 = "instrumentation"
|
|
|
|
PACKAGECONFIG[instrumentation] = "--enable-instrumentation,--disable-instrumentation,"
|
|
|
|
inherit autotools pkgconfig
|
|
|
|
EXTRA_OECONF = "--with-zlib=${STAGING_EXECPREFIXDIR}"
|
|
|
|
do_configure_prepend() {
|
|
(cd ${S}; ./autogen.sh; cd -)
|
|
}
|