mbox series

[v2,0/2] Select CONFIG_64BIT for sandbox64 and x86_64

Message ID 20241106124215.677519-1-andrew.goodbody@linaro.org
Headers show
Series Select CONFIG_64BIT for sandbox64 and x86_64 | expand

Message

Andrew Goodbody Nov. 6, 2024, 12:42 p.m. UTC
Picking up a series from Dan Carpenter and applying requested
changes for v2.

I had previously set CONFIG_64BIT for arm64.  This patchset does the
same thing for sandbox64 and x86_64.  (Mips and riscv were already
doing it).  This CONFIG option is used in the Makefile to determine
if it's a 32 or 64 bit system for the CHECKER.

Makefile
  1052  # the checker needs the correct machine size
  1053  CHECKFLAGS += $(if $(CONFIG_64BIT),-m64,-m32)

Changes in v2:
Resubmitted by Andrew Goodbody with changes requested by reviewer

Andrew Goodbody (2):
  sandbox: select CONFIG_64BIT for SANDBOX64
  x86: select CONFIG_64BIT for X86_64

 arch/sandbox/Kconfig | 1 +
 arch/x86/Kconfig     | 1 +
 2 files changed, 2 insertions(+)

Comments

Dan Carpenter Nov. 6, 2024, 1:39 p.m. UTC | #1
Thanks, Andrew!

regards,
dan carpenter