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>
This commit is contained in:
Patrick Williams
2023-12-01 13:29:18 -06:00
committed by Khem Raj
parent d3bd2ddf19
commit d90c134f44
@@ -22,6 +22,8 @@ PACKAGECONFIG ?= "shared unwind 64bit-atomics"
PACKAGECONFIG:remove:riscv64 = "unwind"
PACKAGECONFIG:remove:riscv32 = "unwind 64bit-atomics"
PACKAGECONFIG:remove:mipsarch = "64bit-atomics"
PACKAGECONFIG:remove:armv5 = "64bit-atomics"
PACKAGECONFIG:remove:armv6 = "64bit-atomics"
PACKAGECONFIG:append:libc-musl:riscv64 = " execinfo"
PACKAGECONFIG:append:libc-musl:riscv32 = " execinfo"