From 49d9c71cb50d903a5ad827ab46ceb0f66953c6d7 Mon Sep 17 00:00:00 2001 From: Douglas Raillard Date: Wed, 1 Sep 2021 17:33:35 +0100 Subject: [PATCH] tools/recipes/perf.recipe: Avoid compilation failure because of warning --- tools/recipes/perf.recipe | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/recipes/perf.recipe b/tools/recipes/perf.recipe index 36b7b042e..23e868cad 100644 --- a/tools/recipes/perf.recipe +++ b/tools/recipes/perf.recipe @@ -16,7 +16,7 @@ build() { x86_64) arch=x86_64;; esac - make -f Makefile ARCH=$arch CROSS_COMPILE=$CROSS_COMPILE NO_SDT=1 LDFLAGS="-static" EXTRA_CFLAGS="-Wno-format-truncation" NO_LIBELF=1 + make -f Makefile ARCH=$arch CROSS_COMPILE=$CROSS_COMPILE NO_SDT=1 LDFLAGS="-static" EXTRA_CFLAGS="-Wno-format-truncation -Wno-error" NO_LIBELF=1 "$CROSS_COMPILE"strip perf } -- GitLab