From fa02cad2dae68e07e4c62a2df0ac5e247207e9ca Mon Sep 17 00:00:00 2001 From: Khem Raj Date: Sun, 2 Jul 2023 21:35:11 -0700 Subject: [PATCH] gn: Disable warning as error but not disable completely This will still emit the diagnostic but it wont break the build, additionally pass it to CXXFLAGS since thats the right subset to disable it for. Signed-off-by: Khem Raj Signed-off-by: Jon Mason --- meta-arm/recipes-devtools/gn/gn_git.bb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meta-arm/recipes-devtools/gn/gn_git.bb b/meta-arm/recipes-devtools/gn/gn_git.bb index 3713787a..4b021bbe 100644 --- a/meta-arm/recipes-devtools/gn/gn_git.bb +++ b/meta-arm/recipes-devtools/gn/gn_git.bb @@ -16,7 +16,7 @@ B = "${WORKDIR}/build" # ../git/src/gn/desc_builder.cc: In member function 'base::Value {anonymous}::BaseDescBuilder::ToBaseValue(const Scope*)': # ../git/src/gn/desc_builder.cc:179:21: error: redundant move in return statement [-Werror=redundant-move] # 179 | return std::move(res); -CFLAGS:append = " -Wno-redundant-move" +CXXFLAGS += "-Wno-error=redundant-move" # Map from our _OS strings to the GN's platform values. def gn_platform(variable, d):