Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

s390/vdso: Drop '-shared' from KBUILD_CFLAGS_64

When clang's -Qunused-arguments is dropped from KBUILD_CPPFLAGS, it
points out that there is a linking phase flag added to CFLAGS, which
will only be used for compiling

clang-16: error: argument unused during compilation: '-shared' [-Werror,-Wunused-command-line-argument]

'-shared' is already present in ldflags-y so it can just be dropped.

Fixes: 2b2a25845d53 ("s390/vdso: Use $(LD) instead of $(CC) to link vDSO")
Signed-off-by: Nathan Chancellor <nathan@kernel.org>
Acked-by: Heiko Carstens <hca@linux.ibm.com>
Reviewed-by: Sven Schnelle <svens@linux.ibm.com>
Tested-by: Linux Kernel Functional Testing <lkft@linaro.org>
Tested-by: Anders Roxell <anders.roxell@linaro.org>
Signed-off-by: Masahiro Yamada <masahiroy@kernel.org>

authored by

Nathan Chancellor and committed by
Masahiro Yamada
fd8589dc f8210229

+1 -1
+1 -1
arch/s390/kernel/vdso64/Makefile
··· 25 25 KBUILD_AFLAGS_64 += -m64 26 26 27 27 KBUILD_CFLAGS_64 := $(filter-out -m64,$(KBUILD_CFLAGS)) 28 - KBUILD_CFLAGS_64 += -m64 -fPIC -shared -fno-common -fno-builtin 28 + KBUILD_CFLAGS_64 += -m64 -fPIC -fno-common -fno-builtin 29 29 ldflags-y := -fPIC -shared -soname=linux-vdso64.so.1 \ 30 30 --hash-style=both --build-id=sha1 -T 31 31