Skip to content

Commit

Permalink
glog: Disable 64bit atomics on armv{5,6}
Browse files Browse the repository at this point in the history
The ARMv5 and ARMv6 architectures do not support 64-bit atomics, so
disable them.

Signed-off-by: Patrick Williams <[email protected]>
Signed-off-by: Khem Raj <[email protected]>
  • Loading branch information
williamspatrick authored and kraj committed Dec 1, 2023
1 parent d3bd2dd commit d90c134
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions meta-oe/recipes-support/glog/glog_0.6.0.bb
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down

0 comments on commit d90c134

Please sign in to comment.