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.

Merge tag 'arm64-fixes' of git://git.kernel.org/pub/scm/linux/kernel/git/arm64/linux

Pull arm64 LDFLAGS clean-up from Catalin Marinas:

- use aarch64elf instead of aarch64linux

- move endianness options to LDFLAGS instead from LD

- remove no-op '-p' linker flag

* tag 'arm64-fixes' of git://git.kernel.org/pub/scm/linux/kernel/git/arm64/linux:
arm64: remove no-op -p linker flag
arm64: add endianness option to LDFLAGS instead of LD
arm64: Use aarch64elf and aarch64elfb emulation mode variants

+3 -5
+3 -5
arch/arm64/Makefile
··· 10 10 # 11 11 # Copyright (C) 1995-2001 by Russell King 12 12 13 - LDFLAGS_vmlinux :=-p --no-undefined -X 13 + LDFLAGS_vmlinux :=--no-undefined -X 14 14 CPPFLAGS_vmlinux.lds = -DTEXT_OFFSET=$(TEXT_OFFSET) 15 15 GZFLAGS :=-9 16 16 ··· 60 60 KBUILD_CPPFLAGS += -mbig-endian 61 61 CHECKFLAGS += -D__AARCH64EB__ 62 62 AS += -EB 63 - LD += -EB 64 - LDFLAGS += -maarch64linuxb 63 + LDFLAGS += -EB -maarch64elfb 65 64 UTS_MACHINE := aarch64_be 66 65 else 67 66 KBUILD_CPPFLAGS += -mlittle-endian 68 67 CHECKFLAGS += -D__AARCH64EL__ 69 68 AS += -EL 70 - LD += -EL 71 - LDFLAGS += -maarch64linux 69 + LDFLAGS += -EL -maarch64elf 72 70 UTS_MACHINE := aarch64 73 71 endif 74 72