1
0
mirror of https://git.yoctoproject.org/meta-arm synced 2026-01-12 03:10:15 +00:00

arm/gn: disable uninitialized variable warning

An uninitialized variable warning is occurring when compiling gn.
However, since Wall is being used in gn, this is being logged as an
error.  Pass the no-error flag for this case to workaround this issue.

Signed-off-by: Jon Mason <jon.mason@arm.com>
This commit is contained in:
Jon Mason
2025-08-20 12:54:23 -04:00
parent 9e6671a222
commit d8f0ab517b

View File

@@ -43,3 +43,4 @@ do_install() {
BBCLASSEXTEND = "native"
COMPATIBLE_HOST = "^(?!riscv32).*"
CFLAGS += "-Wno-error=maybe-uninitialized"