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 2f8f69012e:
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 <wbx@openadk.org>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
This commit is contained in:
Waldemar Brodkorb 2023-08-12 15:04:10 +02:00 committed by Thomas Petazzoni
parent 55b47a4060
commit 2bd93a30a6

View File

@ -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))