Skip to content

Commit

Permalink
memblock tests: Fix testing with 32-bit physical addresses
Browse files Browse the repository at this point in the history
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>
  • Loading branch information
Karolina Drobnik authored and Mike Rapoport committed Mar 5, 2022
1 parent f30b002 commit 2a7ceac
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions tools/testing/memblock/scripts/Makefile.include
Original file line number Diff line number Diff line change
Expand Up @@ -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

0 comments on commit 2a7ceac

Please sign in to comment.