When clang's -Qunused-arguments is dropped from KBUILD_CPPFLAGS, it warns that KBUILD_AFLAGS_64 contains '-s', which is a linking phase option, so it is unused. clang-16: error: argument unused during compilation: '-s' [-Werror,-Wunused-command-line-argument] There appears to be no equivalent for '-s' in GNU as; 'as --help' on x86_64 notes that '-s' is ignored and 's390x-linux-gnu-as --help' makes no mention of it whatsoever. Just drop '-s' altogether, as it has been there since the introduction of the vDSO, which means it is likely uneeded, given there would likely have been a report by this point. Signed-off-by: Nathan Chancellor <nathan@xxxxxxxxxx> --- Cc: hca@xxxxxxxxxxxxx Cc: gor@xxxxxxxxxxxxx Cc: agordeev@xxxxxxxxxxxxx Cc: borntraeger@xxxxxxxxxxxxx Cc: svens@xxxxxxxxxxxxx Cc: linux-s390@xxxxxxxxxxxxxxx --- arch/s390/kernel/vdso64/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/arch/s390/kernel/vdso64/Makefile b/arch/s390/kernel/vdso64/Makefile index 9e2b95a222a9..a2fe9383d452 100644 --- a/arch/s390/kernel/vdso64/Makefile +++ b/arch/s390/kernel/vdso64/Makefile @@ -22,7 +22,7 @@ KBUILD_AFLAGS += -DBUILD_VDSO KBUILD_CFLAGS += -DBUILD_VDSO -DDISABLE_BRANCH_PROFILING KBUILD_AFLAGS_64 := $(filter-out -m64,$(KBUILD_AFLAGS)) -KBUILD_AFLAGS_64 += -m64 -s +KBUILD_AFLAGS_64 += -m64 KBUILD_CFLAGS_64 := $(filter-out -m64,$(KBUILD_CFLAGS)) KBUILD_CFLAGS_64 += -m64 -fPIC -shared -fno-common -fno-builtin -- 2.39.0