mirror of
git://git.openembedded.org/meta-openembedded
synced 2026-04-02 02:49:12 +00:00
libchamplain: don't compile for 32-bit targets
The recipe can't be compiled for 32-bit targets currently, due to GTimeVal usage - see bug report in the project[1]. Remove the 32-bit targets from the compatibility list until it is fixed. [1]: https://gitlab.gnome.org/GNOME/libchamplain/-/issues/61 Signed-off-by: Gyorgy Sarvari <skandigraun@gmail.com>
This commit is contained in:
parent
684e8862b3
commit
c8f58ece49
@ -12,3 +12,14 @@ SRC_URI = "git://github.com/gnome/libchamplain.git;branch=master;protocol=https"
|
||||
|
||||
S = "${WORKDIR}/git"
|
||||
|
||||
# Compilation fails on 32-bit targets, due to GTimeVal usage, which assumes that
|
||||
# time_t is always long, which is not always the case.
|
||||
# See bugreport:
|
||||
# https://gitlab.gnome.org/GNOME/libchamplain/-/issues/61
|
||||
COMPATIBLE_HOST:armv4 = "null"
|
||||
COMPATIBLE_HOST:armv5 = "null"
|
||||
COMPATIBLE_HOST:armv7 = "null"
|
||||
COMPATIBLE_HOST:armv7a = "null"
|
||||
COMPATIBLE_HOST:armv7ve = "null"
|
||||
COMPATIBLE_HOST:riscv32 = "null"
|
||||
COMPATIBLE_HOST:x86 = "null"
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user