From bda777582c90be7d6cc4072c03d43b2e18765ffb Mon Sep 17 00:00:00 2001 From: Vincent Li Date: Wed, 25 Dec 2024 12:42:45 -0800 Subject: [PATCH] strace: fix compile error after moving strace to core package and recompile strace, it errors out with: macros.h:141:9: error: static assertion failed: "Unexpected size of sysoff.rsv (sizeof(unsigned int) * 3 expected). --enabled-bundled=yes configure option may be used to work around that." fix the error as the error log message suggested Signed-off-by: Vincent Li --- lfs/strace | 1 + 1 file changed, 1 insertion(+) diff --git a/lfs/strace b/lfs/strace index 48c9180b1..ecfe01dcb 100644 --- a/lfs/strace +++ b/lfs/strace @@ -84,6 +84,7 @@ $(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects)) @rm -rf $(DIR_APP) && cd $(DIR_SRC) && tar axf $(DIR_DL)/$(DL_FILE) cd $(DIR_APP) && ./configure \ --prefix=/usr \ + --enable-bundled=yes \ --enable-mpers=check cd $(DIR_APP) && make $(MAKETUNING) cd $(DIR_APP) && make install