]> Git Repo - linux.git/commit
kbuild: add $(CLANG_FLAGS) to KBUILD_CPPFLAGS
authorMasahiro Yamada <[email protected]>
Sun, 9 Apr 2023 14:53:57 +0000 (23:53 +0900)
committerMasahiro Yamada <[email protected]>
Mon, 5 Jun 2023 00:50:44 +0000 (09:50 +0900)
commitfeb843a469fb0ab00d2d23cfb9bcc379791011bb
tree2c90f8a084b88faca0df9a9ebfb67f872544af62
parentcff6e7f50bd315e5b39c4e46c704ac587ceb965f
kbuild: add $(CLANG_FLAGS) to KBUILD_CPPFLAGS

When preprocessing arch/*/kernel/vmlinux.lds.S, the target triple is
not passed to $(CPP) because we add it only to KBUILD_{C,A}FLAGS.

As a result, the linker script is preprocessed with predefined macros
for the build host instead of the target.

Assuming you use an x86 build machine, compare the following:

 $ clang -dM -E -x c /dev/null
 $ clang -dM -E -x c /dev/null -target aarch64-linux-gnu

There is no actual problem presumably because our linker scripts do not
rely on such predefined macros, but it is better to define correct ones.

Move $(CLANG_FLAGS) to KBUILD_CPPFLAGS, so that all *.c, *.S, *.lds.S
will be processed with the proper target triple.

[Note]
After the patch submission, we got an actual problem that needs this
commit. (CBL issue 1859)

Link: https://github.com/ClangBuiltLinux/linux/issues/1859
Reported-by: Tom Rini <[email protected]>
Signed-off-by: Masahiro Yamada <[email protected]>
Reviewed-by: Nathan Chancellor <[email protected]>
Tested-by: Nathan Chancellor <[email protected]>
scripts/Makefile.clang
This page took 0.053214 seconds and 4 git commands to generate.