瀏覽代碼

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 <wbx@openadk.org>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
(cherry picked from commit 2bd93a30a60ad224f0ee974878d9d9b5dd1206af)
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Waldemar Brodkorb 2 年之前
父節點
當前提交
e8eecbff45
共有 1 個文件被更改,包括 4 次插入0 次删除
  1. 4 0
      package/xfsprogs/xfsprogs.mk

+ 4 - 0
package/xfsprogs/xfsprogs.mk

@@ -27,6 +27,10 @@ else
 XFSPROGS_CONF_OPTS += --disable-libicu
 XFSPROGS_CONF_OPTS += --disable-libicu
 endif
 endif
 
 
+ifeq ($(BR2_OPTIMIZE_0),y)
+XFSPROGS_CONF_ENV += CFLAGS="$(TARGET_CFLAGS) -O1"
+endif
+
 XFSPROGS_INSTALL_TARGET_OPTS = DIST_ROOT=$(TARGET_DIR) install
 XFSPROGS_INSTALL_TARGET_OPTS = DIST_ROOT=$(TARGET_DIR) install
 
 
 $(eval $(autotools-package))
 $(eval $(autotools-package))