aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/tools/testing/memblock
diff options
context:
space:
mode:
authorKarolina Drobnik <karolinadrobnik@gmail.com>2022-03-04 13:52:49 +0100
committerMike Rapoport <rppt@linux.ibm.com>2022-03-05 19:46:46 +0200
commit2a7ceac9e58167fadc3496c5f694543d4bbe03ef (patch)
tree4aa31c0d8bf1314873630d3c1ea90879d39d15be /tools/testing/memblock
parentmemblock: __next_mem_pfn_range_in_zone: remove unneeded local variable nid (diff)
downloadwireguard-linux-2a7ceac9e58167fadc3496c5f694543d4bbe03ef.tar.xz
wireguard-linux-2a7ceac9e58167fadc3496c5f694543d4bbe03ef.zip
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 <karolinadrobnik@gmail.com> Signed-off-by: Mike Rapoport <rppt@linux.ibm.com>
Diffstat (limited to 'tools/testing/memblock')
-rw-r--r--tools/testing/memblock/scripts/Makefile.include6
1 files changed, 4 insertions, 2 deletions
diff --git a/tools/testing/memblock/scripts/Makefile.include b/tools/testing/memblock/scripts/Makefile.include
index 699b0d6cda07..641569ccb7b0 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