diff options
| author | Hongxu Jia <hongxu.jia@windriver.com> | 2025-10-24 11:27:07 +0800 |
|---|---|---|
| committer | Khem Raj <raj.khem@gmail.com> | 2025-10-24 09:06:24 -0700 |
| commit | 6a21bd735b3b428904f14ef89afe16578823065f (patch) | |
| tree | 82262c739d3681ee0830f8891ef1dd5dc38a9b65 /meta-python/recipes-devtools/python/python3-aiohttp_3.12.15.bb | |
| parent | 3f3c8f39edd9fb508a24d30ada2e52da6c7cb2db (diff) | |
| download | meta-openembedded-6a21bd735b3b428904f14ef89afe16578823065f.tar.gz | |
python3-aiohttp: fix compiler failure on 32-bit arm
Build 32bit python3-aiohttp failed on arm
...
vendor/llhttp/build/c/llhttp.c:2643:11: error: incompatible type for argument 1 of 'vandq_u16'
2643 | vcgeq_u8(input, vdupq_n_u8(' ')),
| ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
| |
| uint8x16_t
...
Refer [1], add -flax-vector-conversions to 32bit arm compiler
[1] https://github.com/xmrig/xmrig/issues/3673
Signed-off-by: Hongxu Jia <hongxu.jia@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Diffstat (limited to 'meta-python/recipes-devtools/python/python3-aiohttp_3.12.15.bb')
| -rw-r--r-- | meta-python/recipes-devtools/python/python3-aiohttp_3.12.15.bb | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/meta-python/recipes-devtools/python/python3-aiohttp_3.12.15.bb b/meta-python/recipes-devtools/python/python3-aiohttp_3.12.15.bb index cb8aa96d00..6ca05d0596 100644 --- a/meta-python/recipes-devtools/python/python3-aiohttp_3.12.15.bb +++ b/meta-python/recipes-devtools/python/python3-aiohttp_3.12.15.bb | |||
| @@ -21,3 +21,5 @@ RDEPENDS:${PN} = "\ | |||
| 21 | python3-yarl \ | 21 | python3-yarl \ |
| 22 | python3-aiodns \ | 22 | python3-aiodns \ |
| 23 | " | 23 | " |
| 24 | |||
| 25 | CFLAGS:append:arm = " -flax-vector-conversions" | ||
