]> Git Repo - linux.git/commit
selftests/mm: fix cross compilation with LLVM
authorMark Brown <[email protected]>
Wed, 14 Jun 2023 21:18:58 +0000 (22:18 +0100)
committerAndrew Morton <[email protected]>
Mon, 19 Jun 2023 20:19:35 +0000 (13:19 -0700)
commit0518dbe97fe629fea255318841cf3ef1b4532d66
tree165613db3b6c3bfa2e7193e4bbe4027502638330
parent823b37e8a7104ca2bcf1945be77f33d4d5740f55
selftests/mm: fix cross compilation with LLVM

Currently the MM selftests attempt to work out the target architecture by
using CROSS_COMPILE or otherwise querying the host machine, storing the
target architecture in a variable called MACHINE rather than the usual
ARCH though as far as I can tell (including for x86_64) the value is the
same as we would use for architecture.

When cross compiling with LLVM we don't need a CROSS_COMPILE as LLVM can
support many target architectures in a single build so this logic does not
work, CROSS_COMPILE is not set and we end up selecting tests for the host
rather than target architecture.  Fix this by using the more standard ARCH
to describe the architecture, taking it from the environment if specified.

Link: https://lkml.kernel.org/r/[email protected]
Signed-off-by: Mark Brown <[email protected]>
Cc: Nick Desaulniers <[email protected]>
Cc: Albert Ou <[email protected]>
Cc: Nathan Chancellor <[email protected]>
Cc: Nick Desaulniers <[email protected]>
Cc: Palmer Dabbelt <[email protected]>
Cc: Paul Walmsley <[email protected]>
Cc: Shuah Khan <[email protected]>
Cc: Tom Rix <[email protected]>
Signed-off-by: Andrew Morton <[email protected]>
tools/testing/selftests/mm/Makefile
This page took 0.128522 seconds and 4 git commands to generate.