summaryrefslogtreecommitdiffstats
path: root/meta/recipes-gnome/librsvg
diff options
context:
space:
mode:
authorKhem Raj <raj.khem@gmail.com>2021-11-06 08:36:56 -0700
committerRichard Purdie <richard.purdie@linuxfoundation.org>2021-11-07 10:56:26 +0000
commited151b32e8f199652a7d8b7e3c0fe00256e64a84 (patch)
tree0f8c1d0299c9c8aad6247b5cb2218851837d69a0 /meta/recipes-gnome/librsvg
parent099199c951480aefeba2c6c910c8ca7d740742bd (diff)
downloadpoky-ed151b32e8f199652a7d8b7e3c0fe00256e64a84.tar.gz
librsvg: Disable 64bit atomics on riscv32/mipsel in crossbeam
(From OE-Core rev: d1635d80c2e0c8680c0af9966eb6007700601c39) Signed-off-by: Khem Raj <raj.khem@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-gnome/librsvg')
-rw-r--r--meta/recipes-gnome/librsvg/librsvg_2.52.3.bb2
1 files changed, 2 insertions, 0 deletions
diff --git a/meta/recipes-gnome/librsvg/librsvg_2.52.3.bb b/meta/recipes-gnome/librsvg/librsvg_2.52.3.bb
index 6c4850271d..f1d1a8f9f4 100644
--- a/meta/recipes-gnome/librsvg/librsvg_2.52.3.bb
+++ b/meta/recipes-gnome/librsvg/librsvg_2.52.3.bb
@@ -39,7 +39,9 @@ export RUST_TARGET_PATH
39export RUST_TARGET = "${HOST_SYS}" 39export RUST_TARGET = "${HOST_SYS}"
40 40
41RUSTFLAGS:append:mips = " --cfg crossbeam_no_atomic_64" 41RUSTFLAGS:append:mips = " --cfg crossbeam_no_atomic_64"
42RUSTFLAGS:append:mipsel = " --cfg crossbeam_no_atomic_64"
42RUSTFLAGS:append:powerpc = " --cfg crossbeam_no_atomic_64" 43RUSTFLAGS:append:powerpc = " --cfg crossbeam_no_atomic_64"
44RUSTFLAGS:append:riscv32 = " --cfg crossbeam_no_atomic_64"
43 45
44# rust-cross writes the target linker binary into target json definition without any flags. 46# rust-cross writes the target linker binary into target json definition without any flags.
45# This breaks here because the linker isn't going to work without at least knowing where 47# This breaks here because the linker isn't going to work without at least knowing where