Makefile (6bde8ef51c917a657476310728d6cb3de6bac9e4) | Makefile (4409d2f8dfe7d5088567d4ba00133f876ee586c7) |
---|---|
1# SPDX-License-Identifier: GPL-2.0 2# 3# linux/arch/arm/boot/compressed/Makefile 4# 5# create a compressed vmlinuz image from the original vmlinux 6# 7 8OBJS = --- 109 unchanged lines hidden (view full) --- 118endif 119ifeq ($(CONFIG_CPU_ENDIAN_BE8),y) 120LDFLAGS_vmlinux += --be8 121endif 122# Report unresolved symbol references 123LDFLAGS_vmlinux += --no-undefined 124# Delete all temporary local symbols 125LDFLAGS_vmlinux += -X | 1# SPDX-License-Identifier: GPL-2.0 2# 3# linux/arch/arm/boot/compressed/Makefile 4# 5# create a compressed vmlinuz image from the original vmlinux 6# 7 8OBJS = --- 109 unchanged lines hidden (view full) --- 118endif 119ifeq ($(CONFIG_CPU_ENDIAN_BE8),y) 120LDFLAGS_vmlinux += --be8 121endif 122# Report unresolved symbol references 123LDFLAGS_vmlinux += --no-undefined 124# Delete all temporary local symbols 125LDFLAGS_vmlinux += -X |
126# Report orphan sections 127LDFLAGS_vmlinux += $(call ld-option, --orphan-handling=warn) |
|
126# Next argument is a linker script 127LDFLAGS_vmlinux += -T 128 129# For __aeabi_uidivmod 130lib1funcs = $(obj)/lib1funcs.o 131 132$(obj)/lib1funcs.S: $(srctree)/arch/$(SRCARCH)/lib/lib1funcs.S 133 $(call cmd,shipped) --- 56 unchanged lines hidden --- | 128# Next argument is a linker script 129LDFLAGS_vmlinux += -T 130 131# For __aeabi_uidivmod 132lib1funcs = $(obj)/lib1funcs.o 133 134$(obj)/lib1funcs.S: $(srctree)/arch/$(SRCARCH)/lib/lib1funcs.S 135 $(call cmd,shipped) --- 56 unchanged lines hidden --- |