From 2bd93a30a60ad224f0ee974878d9d9b5dd1206af Mon Sep 17 00:00:00 2001 From: Waldemar Brodkorb Date: Sat, 12 Aug 2023 15:04:10 +0200 Subject: [PATCH] package/xfsprogs: fix linking error when -O0 is used Urcu does not like -O0 it needs gcc optimizations. Force -O1 in this case. Inspired by package fwts. The issue got introduced in commit 2f8f69012e0eee7f3e98212fb3da118c211f3c0b: before this commit, xfsprogs builds fine at -O0, after this commit, it fails to build at -O0. As this commit went into 2022.02, the fix needs to be backported to stable branches. Fixes: - http://autobuild.buildroot.net/results/3bd/3bd7de784953ab1fa70bf5572eccd7b10e4a0e17 Signed-off-by: Waldemar Brodkorb Signed-off-by: Thomas Petazzoni --- package/xfsprogs/xfsprogs.mk | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/package/xfsprogs/xfsprogs.mk b/package/xfsprogs/xfsprogs.mk index 695471bddc..09f59a76f4 100644 --- a/package/xfsprogs/xfsprogs.mk +++ b/package/xfsprogs/xfsprogs.mk @@ -27,6 +27,10 @@ else XFSPROGS_CONF_OPTS += --disable-libicu endif +ifeq ($(BR2_OPTIMIZE_0),y) +XFSPROGS_CONF_ENV += CFLAGS="$(TARGET_CFLAGS) -O1" +endif + XFSPROGS_INSTALL_TARGET_OPTS = DIST_ROOT=$(TARGET_DIR) install $(eval $(autotools-package))