From 376941cf699d46df3d922d237773ab30c39dc97a Mon Sep 17 00:00:00 2001 From: Amulyam24 Date: Tue, 9 Jan 2024 13:03:01 +0530 Subject: [PATCH] kata-ctl: skip building kata-ctl on ppc64le kata-ctl currently fails to build on ppc64le. Skip it for running static checks and the issues will be fixed and tracked in a seperate issue. Signed-off-by: Amulyam24 --- src/tools/kata-ctl/Makefile | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/src/tools/kata-ctl/Makefile b/src/tools/kata-ctl/Makefile index 546f0783ad..03276b1175 100644 --- a/src/tools/kata-ctl/Makefile +++ b/src/tools/kata-ctl/Makefile @@ -32,6 +32,12 @@ GENERATED_FILES := $(GENERATED_CODE) .DEFAULT_GOAL := default +ifeq ($(ARCH), ppc64le) +default build check test vendor: + @echo "Building kata-ctl on $(ARCH) is currently being skipped" + exit 0 +else + default: $(TARGET) build $(TARGET): $(GENERATED_CODE) @@ -60,6 +66,8 @@ install: check: $(GENERATED_CODE) standard_rust_check +endif + .PHONY: \ build \ check \