diff options
author | Gyorgy Sarvari <skandigraun@gmail.com> | 2025-09-12 13:06:18 +0200 |
---|---|---|
committer | Gyorgy Sarvari <skandigraun@gmail.com> | 2025-09-14 16:50:04 +0200 |
commit | c8f58ece4988e90274d53fcc37f6e533cf4f9be6 (patch) | |
tree | f2708f2239d286d4d8574aa9023356a7a9f002be | |
parent | 684e8862b35f19cc94b65316cf5b4a43d808e639 (diff) | |
download | meta-openembedded-c8f58ece4988e90274d53fcc37f6e533cf4f9be6.tar.gz |
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>
-rw-r--r-- | meta-gnome/recipes-gnome/libchamplain/libchamplain_0.12.21.bb | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/meta-gnome/recipes-gnome/libchamplain/libchamplain_0.12.21.bb b/meta-gnome/recipes-gnome/libchamplain/libchamplain_0.12.21.bb index a89ab8cc74..3a27dee704 100644 --- a/meta-gnome/recipes-gnome/libchamplain/libchamplain_0.12.21.bb +++ b/meta-gnome/recipes-gnome/libchamplain/libchamplain_0.12.21.bb | |||
@@ -12,3 +12,14 @@ SRC_URI = "git://github.com/gnome/libchamplain.git;branch=master;protocol=https" | |||
12 | 12 | ||
13 | S = "${WORKDIR}/git" | 13 | S = "${WORKDIR}/git" |
14 | 14 | ||
15 | # Compilation fails on 32-bit targets, due to GTimeVal usage, which assumes that | ||
16 | # time_t is always long, which is not always the case. | ||
17 | # See bugreport: | ||
18 | # https://gitlab.gnome.org/GNOME/libchamplain/-/issues/61 | ||
19 | COMPATIBLE_HOST:armv4 = "null" | ||
20 | COMPATIBLE_HOST:armv5 = "null" | ||
21 | COMPATIBLE_HOST:armv7 = "null" | ||
22 | COMPATIBLE_HOST:armv7a = "null" | ||
23 | COMPATIBLE_HOST:armv7ve = "null" | ||
24 | COMPATIBLE_HOST:riscv32 = "null" | ||
25 | COMPATIBLE_HOST:x86 = "null" | ||