From 9cfd2a268700c4ff4b2adec4fb70bde9f0816d84 Mon Sep 17 00:00:00 2001 From: Michael Tremer Date: Fri, 2 May 2025 10:16:19 +0000 Subject: [PATCH] openvmtools: Fix build with GCC 15 Signed-off-by: Michael Tremer --- lfs/openvmtools | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lfs/openvmtools b/lfs/openvmtools index 6e277f080..52ea91c73 100644 --- a/lfs/openvmtools +++ b/lfs/openvmtools @@ -41,7 +41,8 @@ DEPS = SERVICES = openvmtools -CFLAGS += -Wno-error=array-bounds +# Fix build with GCC 15 +CFLAGS += -std=gnu17 -Wno-error=array-bounds ############################################################################### # Top-level Rules -- 2.47.3