Commit 091bb549 authored by Nathan Chancellor's avatar Nathan Chancellor Committed by Russell King
Browse files

ARM: 8819/1: Remove '-p' from LDFLAGS



This option is not supported by lld:

    ld.lld: error: unknown argument: -p

This has been a no-op in binutils since 2004 (see commit dea514f51da1 in
that tree). Given that the lowest officially supported of binutils for
the kernel is 2.20, which was released in 2009, nobody needs this flag
around so just remove it. Commit 1a381d4a ("arm64: remove no-op -p
linker flag") did the same for arm64.

Signed-off-by: default avatarNathan Chancellor <natechancellor@gmail.com>
Acked-by: default avatarArd Biesheuvel <ard.biesheuvel@linaro.org>
Acked-by: default avatarNicolas Pitre <nico@linaro.org>
Reviewed-by: default avatarNick Desaulniers <ndesaulniers@google.com>
Reviewed-by: default avatarStefan Agner <stefan@agner.ch>
Signed-off-by: default avatarRussell King <rmk+kernel@armlinux.org.uk>
parent 4a4d68fc
Loading
Loading
Loading
Loading
+1 −1
Original line number Original line Diff line number Diff line
@@ -10,7 +10,7 @@
#
#
# Copyright (C) 1995-2001 by Russell King
# Copyright (C) 1995-2001 by Russell King


LDFLAGS_vmlinux	:=-p --no-undefined -X --pic-veneer
LDFLAGS_vmlinux	:= --no-undefined -X --pic-veneer
ifeq ($(CONFIG_CPU_ENDIAN_BE8),y)
ifeq ($(CONFIG_CPU_ENDIAN_BE8),y)
LDFLAGS_vmlinux	+= --be8
LDFLAGS_vmlinux	+= --be8
KBUILD_LDFLAGS_MODULE	+= --be8
KBUILD_LDFLAGS_MODULE	+= --be8
+1 −1
Original line number Original line Diff line number Diff line
@@ -8,7 +8,7 @@


GCOV_PROFILE	:= n
GCOV_PROFILE	:= n


LDFLAGS_bootp	:=-p --no-undefined -X \
LDFLAGS_bootp	:= --no-undefined -X \
		 --defsym initrd_phys=$(INITRD_PHYS) \
		 --defsym initrd_phys=$(INITRD_PHYS) \
		 --defsym params_phys=$(PARAMS_PHYS) -T
		 --defsym params_phys=$(PARAMS_PHYS) -T
AFLAGS_initrd.o :=-DINITRD=\"$(INITRD)\"
AFLAGS_initrd.o :=-DINITRD=\"$(INITRD)\"
+0 −2
Original line number Original line Diff line number Diff line
@@ -132,8 +132,6 @@ endif
ifeq ($(CONFIG_CPU_ENDIAN_BE8),y)
ifeq ($(CONFIG_CPU_ENDIAN_BE8),y)
LDFLAGS_vmlinux += --be8
LDFLAGS_vmlinux += --be8
endif
endif
# ?
LDFLAGS_vmlinux += -p
# Report unresolved symbol references
# Report unresolved symbol references
LDFLAGS_vmlinux += --no-undefined
LDFLAGS_vmlinux += --no-undefined
# Delete all temporary local symbols
# Delete all temporary local symbols