summaryrefslogtreecommitdiffstats
path: root/meta-oe
diff options
context:
space:
mode:
authorPatrick Williams <patrick@stwcx.xyz>2023-12-01 13:29:18 -0600
committerKhem Raj <raj.khem@gmail.com>2023-12-01 13:16:48 -0800
commitd90c134f4487af46513d8b141343b03e3a5ca87a (patch)
treee7fb7448a8bfcda76feb106fb1bd65c0ac05cf51 /meta-oe
parentd3bd2ddf192dfd1ca3326975cdfd8833deb6677b (diff)
downloadmeta-openembedded-d90c134f4487af46513d8b141343b03e3a5ca87a.tar.gz
glog: Disable 64bit atomics on armv{5,6}
The ARMv5 and ARMv6 architectures do not support 64-bit atomics, so disable them. Signed-off-by: Patrick Williams <patrick@stwcx.xyz> Signed-off-by: Khem Raj <raj.khem@gmail.com>
Diffstat (limited to 'meta-oe')
-rw-r--r--meta-oe/recipes-support/glog/glog_0.6.0.bb2
1 files changed, 2 insertions, 0 deletions
diff --git a/meta-oe/recipes-support/glog/glog_0.6.0.bb b/meta-oe/recipes-support/glog/glog_0.6.0.bb
index c09ce73f9..ec39604f4 100644
--- a/meta-oe/recipes-support/glog/glog_0.6.0.bb
+++ b/meta-oe/recipes-support/glog/glog_0.6.0.bb
@@ -22,6 +22,8 @@ PACKAGECONFIG ?= "shared unwind 64bit-atomics"
22PACKAGECONFIG:remove:riscv64 = "unwind" 22PACKAGECONFIG:remove:riscv64 = "unwind"
23PACKAGECONFIG:remove:riscv32 = "unwind 64bit-atomics" 23PACKAGECONFIG:remove:riscv32 = "unwind 64bit-atomics"
24PACKAGECONFIG:remove:mipsarch = "64bit-atomics" 24PACKAGECONFIG:remove:mipsarch = "64bit-atomics"
25PACKAGECONFIG:remove:armv5 = "64bit-atomics"
26PACKAGECONFIG:remove:armv6 = "64bit-atomics"
25 27
26PACKAGECONFIG:append:libc-musl:riscv64 = " execinfo" 28PACKAGECONFIG:append:libc-musl:riscv64 = " execinfo"
27PACKAGECONFIG:append:libc-musl:riscv32 = " execinfo" 29PACKAGECONFIG:append:libc-musl:riscv32 = " execinfo"