vsomeip: Don't fail on Boost.Asio deprecation warnings

Append -Wno-error=deprecated-declarations to CXXFLAGS so builds
don't break when Boost marks APIs like strand::wrap() as deprecated.

Signed-off-by: Khem Raj <raj.khem@gmail.com>
This commit is contained in:
Khem Raj
2026-01-03 10:12:54 -08:00
parent 7d0234ae64
commit bc40b0134f

View File

@@ -44,6 +44,8 @@ EXTRA_OECMAKE += "-DTEST_IP_MASTER=10.0.3.1 \
-DTEST_IP_SLAVE_SECOND=10.0.3.3 \ -DTEST_IP_SLAVE_SECOND=10.0.3.3 \
-DTEST_UID=1000 -DTEST_GID=1000 \ -DTEST_UID=1000 -DTEST_GID=1000 \
" "
# Fixes build with boost 1.90+
CXXFLAGS:append = " -Wno-error=deprecated-declarations"
RDEPENDS:${PN}-test = "bash lsof" RDEPENDS:${PN}-test = "bash lsof"