diff options
| author | Patrick Williams <patrick@stwcx.xyz> | 2023-12-01 13:29:18 -0600 |
|---|---|---|
| committer | Khem Raj <raj.khem@gmail.com> | 2023-12-01 13:16:48 -0800 |
| commit | d90c134f4487af46513d8b141343b03e3a5ca87a (patch) | |
| tree | e7fb7448a8bfcda76feb106fb1bd65c0ac05cf51 | |
| parent | d3bd2ddf192dfd1ca3326975cdfd8833deb6677b (diff) | |
| download | meta-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>
| -rw-r--r-- | meta-oe/recipes-support/glog/glog_0.6.0.bb | 2 |
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 c09ce73f98..ec39604f44 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" | |||
| 22 | PACKAGECONFIG:remove:riscv64 = "unwind" | 22 | PACKAGECONFIG:remove:riscv64 = "unwind" |
| 23 | PACKAGECONFIG:remove:riscv32 = "unwind 64bit-atomics" | 23 | PACKAGECONFIG:remove:riscv32 = "unwind 64bit-atomics" |
| 24 | PACKAGECONFIG:remove:mipsarch = "64bit-atomics" | 24 | PACKAGECONFIG:remove:mipsarch = "64bit-atomics" |
| 25 | PACKAGECONFIG:remove:armv5 = "64bit-atomics" | ||
| 26 | PACKAGECONFIG:remove:armv6 = "64bit-atomics" | ||
| 25 | 27 | ||
| 26 | PACKAGECONFIG:append:libc-musl:riscv64 = " execinfo" | 28 | PACKAGECONFIG:append:libc-musl:riscv64 = " execinfo" |
| 27 | PACKAGECONFIG:append:libc-musl:riscv32 = " execinfo" | 29 | PACKAGECONFIG:append:libc-musl:riscv32 = " execinfo" |
