This is a note to let you know that I've just added the patch titled mips: Include KBUILD_CPPFLAGS in CHECKFLAGS invocation to the 6.4-stable tree which can be found at: http://www.kernel.org/git/?p=linux/kernel/git/stable/stable-queue.git;a=summary The filename of the patch is: mips-include-kbuild_cppflags-in-checkflags-invocation.patch and it can be found in the queue-6.4 subdirectory. If you, or anyone else, feels it should not be added to the stable tree, please let <stable@xxxxxxxxxxxxxxx> know about it. >From 08f6554ff90ef189e6b8f0303e57005bddfdd6a7 Mon Sep 17 00:00:00 2001 From: Nathan Chancellor <nathan@xxxxxxxxxx> Date: Thu, 1 Jun 2023 11:38:24 -0700 Subject: mips: Include KBUILD_CPPFLAGS in CHECKFLAGS invocation From: Nathan Chancellor <nathan@xxxxxxxxxx> commit 08f6554ff90ef189e6b8f0303e57005bddfdd6a7 upstream. A future change will move CLANG_FLAGS from KBUILD_{A,C}FLAGS to KBUILD_CPPFLAGS so that '--target' is available while preprocessing. When that occurs, the following error appears when building ARCH=mips with clang (tip of tree error shown): clang: error: unsupported option '-mabi=' for target 'x86_64-pc-linux-gnu' Add KBUILD_CPPFLAGS in the CHECKFLAGS invocation to keep everything working after the move. Signed-off-by: Nathan Chancellor <nathan@xxxxxxxxxx> Signed-off-by: Masahiro Yamada <masahiroy@xxxxxxxxxx> Signed-off-by: Greg Kroah-Hartman <gregkh@xxxxxxxxxxxxxxxxxxx> --- arch/mips/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- a/arch/mips/Makefile +++ b/arch/mips/Makefile @@ -346,7 +346,7 @@ KBUILD_CFLAGS += -fno-asynchronous-unwin KBUILD_LDFLAGS += -m $(ld-emul) ifdef CONFIG_MIPS -CHECKFLAGS += $(shell $(CC) $(KBUILD_CFLAGS) -dM -E -x c /dev/null | \ +CHECKFLAGS += $(shell $(CC) $(KBUILD_CPPFLAGS) $(KBUILD_CFLAGS) -dM -E -x c /dev/null | \ grep -E -vw '__GNUC_(MINOR_|PATCHLEVEL_)?_' | \ sed -e "s/^\#define /-D'/" -e "s/ /'='/" -e "s/$$/'/" -e 's/\$$/&&/g') endif Patches currently in stable-queue which might be from nathan@xxxxxxxxxx are queue-6.4/mips-include-kbuild_cppflags-in-checkflags-invocation.patch queue-6.4/kbuild-add-clang_flags-to-as-instr.patch queue-6.4/start_kernel-add-__no_stack_protector-function-attribute.patch queue-6.4/kbuild-add-clang_flags-to-kbuild_cppflags.patch queue-6.4/powerpc-vdso-include-clang_flags-explicitly-in-ldflags-y.patch queue-6.4/jffs2-reduce-stack-usage-in-jffs2_build_xattr_subsystem.patch queue-6.4/kbuild-add-kbuild_cppflags-to-as-option-invocation.patch