diff options
| author | Hongxu Jia <hongxu.jia@windriver.com> | 2026-02-12 10:56:25 +0100 |
|---|---|---|
| committer | Anuj Mittal <anuj.mittal@oss.qualcomm.com> | 2026-02-12 15:59:04 +0530 |
| commit | ec0469748be4159fb83fb0fa0148d786484c88cf (patch) | |
| tree | 43c721bf7f048280c9608751ea0a5ae79efb19fb /meta-oe/recipes-devtools/nodejs | |
| parent | 3f9623aaefed5b070294a0d52a54a50ea709b389 (diff) | |
| download | meta-openembedded-ec0469748be4159fb83fb0fa0148d786484c88cf.tar.gz | |
nodejs: fix gcc compile failed for 32 bit arm target
Use gcc to compile failed for 32 bit arm target
$ echo 'MACHINE = "qemuarm"' >> conf/local.conf
$ bitbake nodejs
...
2645 | );
| ^
../deps/llhttp/src/llhttp.c:2643:11: error: incompatible type for argument 1 of 'vandq_u16'
2643 | vcgeq_u8(input, vdupq_n_u8(' ')),
| ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
| |
| uint8x16_t
...
Use '-flax-vector-conversions' to permit conversions between vectors
with differing element types or numbers of subparts
Signed-off-by: Hongxu Jia <hongxu.jia@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
(cherry picked from commit fe7aaabb1c30cf263738dbf5df927650809e8074)
Adapted to Scarthgap
Signed-off-by: Gyorgy Sarvari <skandigraun@gmail.com>
Signed-off-by: Anuj Mittal <anuj.mittal@oss.qualcomm.com>
Diffstat (limited to 'meta-oe/recipes-devtools/nodejs')
| -rw-r--r-- | meta-oe/recipes-devtools/nodejs/nodejs_20.20.0.bb | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/meta-oe/recipes-devtools/nodejs/nodejs_20.20.0.bb b/meta-oe/recipes-devtools/nodejs/nodejs_20.20.0.bb index 1bc5a6e9cd..5882319804 100644 --- a/meta-oe/recipes-devtools/nodejs/nodejs_20.20.0.bb +++ b/meta-oe/recipes-devtools/nodejs/nodejs_20.20.0.bb | |||
| @@ -43,6 +43,10 @@ CVE_STATUS[CVE-2024-3566] = "not-applicable-platform: Issue only applies on Wind | |||
| 43 | # v8 errors out if you have set CCACHE | 43 | # v8 errors out if you have set CCACHE |
| 44 | CCACHE = "" | 44 | CCACHE = "" |
| 45 | 45 | ||
| 46 | # Use '-flax-vector-conversions' to permit conversions between vectors | ||
| 47 | # with differing element types or numbers of subparts | ||
| 48 | CFLAGS:append:arm = " -flax-vector-conversions" | ||
| 49 | |||
| 46 | def map_nodejs_arch(a, d): | 50 | def map_nodejs_arch(a, d): |
| 47 | import re | 51 | import re |
| 48 | 52 | ||
