diff options
| author | Khem Raj <raj.khem@gmail.com> | 2025-03-24 09:33:30 -0700 |
|---|---|---|
| committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2025-03-27 11:19:03 +0000 |
| commit | 48e34a905e0863b3bc951ae4126b817b8b535f2b (patch) | |
| tree | 3e21f46a5e972ad15314ad9a7b4fc77000656497 | |
| parent | 1b716172ae8eeb571f0d35c188de031d2e4fe2bb (diff) | |
| download | poky-48e34a905e0863b3bc951ae4126b817b8b535f2b.tar.gz | |
db: Disable incompatible-pointer-types warning as error
GCC-15 treats this warning as error
(From OE-Core rev: f2fce342022f2d87a8679e6aeccfc20c380af5fe)
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
| -rw-r--r-- | meta/recipes-support/db/db_5.3.28.bb | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/meta/recipes-support/db/db_5.3.28.bb b/meta/recipes-support/db/db_5.3.28.bb index a7d061e0da..2e68398f57 100644 --- a/meta/recipes-support/db/db_5.3.28.bb +++ b/meta/recipes-support/db/db_5.3.28.bb | |||
| @@ -118,5 +118,6 @@ INSANE_SKIP:${PN}-cxx = "dev-so" | |||
| 118 | BBCLASSEXTEND = "native nativesdk" | 118 | BBCLASSEXTEND = "native nativesdk" |
| 119 | 119 | ||
| 120 | # many configure tests are failing with gcc-14 | 120 | # many configure tests are failing with gcc-14 |
| 121 | CFLAGS += "-Wno-error=implicit-int -Wno-error=implicit-function-declaration" | 121 | # -Wno-error=incompatible-pointer-types needed for gcc-15 |
| 122 | BUILD_CFLAGS += "-Wno-error=implicit-int -Wno-error=implicit-function-declaration" | 122 | CFLAGS += "-Wno-error=implicit-int -Wno-error=implicit-function-declaration -Wno-error=incompatible-pointer-types" |
| 123 | BUILD_CFLAGS += "-Wno-error=implicit-int -Wno-error=implicit-function-declaration -Wno-error=incompatible-pointer-types" | ||
