From: Karolina Drobnik Date: Fri, 4 Mar 2022 12:52:49 +0000 (+0100) Subject: memblock tests: Fix testing with 32-bit physical addresses X-Git-Tag: v5.18-rc1~92^2~9 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=2a7ceac9e58167fadc3496c5f694543d4bbe03ef;p=thirdparty%2Flinux.git memblock tests: Fix testing with 32-bit physical addresses Building memblock simulator on x86_64 with 32BIT_PHYS_ADDR_T=1 produces "cast to pointer from integer of different size" warnings. Fix them by building the binary in 32-bit environment when using 32-bit physical addresses. Signed-off-by: Karolina Drobnik Signed-off-by: Mike Rapoport --- diff --git a/tools/testing/memblock/scripts/Makefile.include b/tools/testing/memblock/scripts/Makefile.include index 699b0d6cda074..641569ccb7b03 100644 --- a/tools/testing/memblock/scripts/Makefile.include +++ b/tools/testing/memblock/scripts/Makefile.include @@ -11,7 +11,9 @@ ifeq ($(MOVABLE_NODE), 1) CFLAGS += -D MOVABLE_NODE endif -# Use 32 bit physical addresses +# Use 32 bit physical addresses. +# Remember to install 32-bit version of dependencies. ifeq ($(32BIT_PHYS_ADDR_T), 1) - CFLAGS += -U CONFIG_PHYS_ADDR_T_64BIT + CFLAGS += -m32 -U CONFIG_PHYS_ADDR_T_64BIT + LDFLAGS += -m32 endif