diff options
| author | Khem Raj <raj.khem@gmail.com> | 2020-11-14 13:25:43 -0800 |
|---|---|---|
| committer | Khem Raj <raj.khem@gmail.com> | 2020-11-15 12:25:54 -0800 |
| commit | f21d8554883e958b96d47fe0cdb9c6e18ff52209 (patch) | |
| tree | 8c0876732eeb27ae2f24103a5d957f0d03e508af | |
| parent | a3015b7b235c06ffca10d2c669d45786b5023af9 (diff) | |
| download | meta-openembedded-f21d8554883e958b96d47fe0cdb9c6e18ff52209.tar.gz | |
librtorrent: Disable instrumentation on rv32
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>
| -rw-r--r-- | meta-oe/recipes-connectivity/libtorrent/libtorrent_git.bb | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/meta-oe/recipes-connectivity/libtorrent/libtorrent_git.bb b/meta-oe/recipes-connectivity/libtorrent/libtorrent_git.bb index 3ee69554b6..e0d3bef3ca 100644 --- a/meta-oe/recipes-connectivity/libtorrent/libtorrent_git.bb +++ b/meta-oe/recipes-connectivity/libtorrent/libtorrent_git.bb | |||
| @@ -19,6 +19,7 @@ PACKAGECONFIG ??= "instrumentation" | |||
| 19 | 19 | ||
| 20 | PACKAGECONFIG_remove_mipsarch = "instrumentation" | 20 | PACKAGECONFIG_remove_mipsarch = "instrumentation" |
| 21 | PACKAGECONFIG_remove_powerpc = "instrumentation" | 21 | PACKAGECONFIG_remove_powerpc = "instrumentation" |
| 22 | PACKAGECONFIG_remove_riscv32 = "instrumentation" | ||
| 22 | 23 | ||
| 23 | PACKAGECONFIG[instrumentation] = "--enable-instrumentation,--disable-instrumentation," | 24 | PACKAGECONFIG[instrumentation] = "--enable-instrumentation,--disable-instrumentation," |
| 24 | 25 | ||
