summaryrefslogtreecommitdiffstats
path: root/arch/arm64/Makefile
diff options
context:
space:
mode:
authorWilliam Cohen2016-01-22 04:56:26 +0100
committerWill Deacon2016-01-26 12:14:13 +0100
commit728dabd6d1751cf5e0f8e0535891393da62396e9 (patch)
treed47976f44645369f0d2d93ddf0b9349a5c7b1a12 /arch/arm64/Makefile
parentarm64: Fix an enum typo in mm/dump.c (diff)
downloadkernel-qcow2-linux-728dabd6d1751cf5e0f8e0535891393da62396e9.tar.gz
kernel-qcow2-linux-728dabd6d1751cf5e0f8e0535891393da62396e9.tar.xz
kernel-qcow2-linux-728dabd6d1751cf5e0f8e0535891393da62396e9.zip
Eliminate the .eh_frame sections from the aarch64 vmlinux and kernel modules
By default the aarch64 gcc generates .eh_frame sections. Unlike .debug_frame sections, the .eh_frame sections are loaded into memory when the associated code is loaded. On an example kernel being built with this default the .eh_frame section in vmlinux used an extra 1.7MB of memory. The x86 disables the creation of the .eh_frame section. The aarch64 should probably do the same to save some memory. Signed-off-by: William Cohen <wcohen@redhat.com> Signed-off-by: Will Deacon <will.deacon@arm.com>
Diffstat (limited to 'arch/arm64/Makefile')
-rw-r--r--arch/arm64/Makefile1
1 files changed, 1 insertions, 0 deletions
diff --git a/arch/arm64/Makefile b/arch/arm64/Makefile
index cd822d8454c0..094a137f6083 100644
--- a/arch/arm64/Makefile
+++ b/arch/arm64/Makefile
@@ -27,6 +27,7 @@ $(warning LSE atomics not supported by binutils)
endif
KBUILD_CFLAGS += -mgeneral-regs-only $(lseinstr)
+KBUILD_CFLAGS += -fno-asynchronous-unwind-tables
KBUILD_AFLAGS += $(lseinstr)
ifeq ($(CONFIG_CPU_BIG_ENDIAN), y)