diff mbox series

[meta-python,2/2] python3-aiohttp: apply compile option -flax-vector-conversions for gcc

Message ID 20251030051505.1693030-2-hongxu.jia@windriver.com
State New
Headers show
Series [meta-oe,v3,1/2] nodejs: fix gcc compile failed for 32 bit arm target | expand

Commit Message

Hongxu Jia Oct. 30, 2025, 5:15 a.m. UTC
The clang does not need option -flax-vector-conversions to
avoid build failure for 32bit arm target

Signed-off-by: Hongxu Jia <hongxu.jia@windriver.com>
---
 meta-python/recipes-devtools/python/python3-aiohttp_3.12.15.bb | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
diff mbox series

Patch

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 6ca05d0596..b6344d4c68 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
@@ -22,4 +22,4 @@  RDEPENDS:${PN} = "\
     python3-aiodns \
 "
 
-CFLAGS:append:arm = " -flax-vector-conversions"
+CFLAGS:append:toolchain-gcc:arm = " -flax-vector-conversions"