x86/boot: Add $(CLANG_FLAGS) to compressed KBUILD_CFLAGS
authorNathan Chancellor <nathan@kernel.org>
Fri, 26 Mar 2021 00:04:34 +0000 (17:04 -0700)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Tue, 11 May 2021 12:47:18 +0000 (14:47 +0200)
commit8829b6ccf49f6c9a5ac3ef5bc558b934c1a93e0a
tree65503eac8d7c6fa52792d18b7cd9beb1247011c1
parentfdc9c3cff9e213e49429bc07db4b7a503713eddd
x86/boot: Add $(CLANG_FLAGS) to compressed KBUILD_CFLAGS

[ Upstream commit d5cbd80e302dfea59726c44c56ab7957f822409f ]

When cross compiling x86 on an ARM machine with clang, there are several
errors along the lines of:

  arch/x86/include/asm/string_64.h:27:10: error: invalid output constraint '=&c' in asm

This happens because the compressed boot Makefile reassigns KBUILD_CFLAGS
and drops the clang flags that set the target architecture ('--target=')
and the path to the GNU cross tools ('--prefix='), meaning that the host
architecture is targeted.

These flags are available as $(CLANG_FLAGS) from the main Makefile so
add them to the compressed boot folder's KBUILD_CFLAGS so that cross
compiling works as expected.

Signed-off-by: Nathan Chancellor <nathan@kernel.org>
Signed-off-by: Borislav Petkov <bp@suse.de>
Acked-by: Ard Biesheuvel <ardb@kernel.org>
Link: https://lkml.kernel.org/r/20210326000435.4785-3-nathan@kernel.org
Signed-off-by: Sasha Levin <sashal@kernel.org>
arch/x86/boot/compressed/Makefile