diff options
author | Wilco Dijkstra <wdijkstr@arm.com> | 2017-09-14 12:47:35 +0100 |
---|---|---|
committer | Wilco Dijkstra <wdijkstr@arm.com> | 2017-09-19 15:07:58 +0100 |
commit | ca3a382ea3aa9c9ccb57060afae47c7f702727ac (patch) | |
tree | 53dbe1397c04c1ee52a024bd4193e1119b625df7 /sysdeps/arm | |
parent | eb375def3ddd2a1738ed6bc5ace98753f0f7e5e6 (diff) | |
download | glibc-ca3a382ea3aa9c9ccb57060afae47c7f702727ac.tar glibc-ca3a382ea3aa9c9ccb57060afae47c7f702727ac.tar.gz glibc-ca3a382ea3aa9c9ccb57060afae47c7f702727ac.tar.bz2 glibc-ca3a382ea3aa9c9ccb57060afae47c7f702727ac.zip |
Enable unwind info in libc-start.c and backtrace.c
Add unwind info to __libc_start_main so that unwinding continues one
extra level to _start. Similarly add unwind info to backtrace.
Given many targets require this, do this in a general way.
* csu/Makefile: Add -funwind-tables to libc-start.c.
* debug/Makefile: Add -funwind-tables to backtrace.c.
* sysdeps/aarch64/Makefile: Remove CFLAGS-backtrace.c.
* sysdeps/arm/Makefile: Likewise.
* sysdeps/i386/Makefile: Likewise.
* sysdeps/m68k/Makefile: Likewise.
* sysdeps/mips/Makefile: Likewise.
* sysdeps/nios2/Makefile: Likewise.
* sysdeps/sh/Makefile: Likewise.
* sysdeps/sparc/Makefile: Likewise.
Diffstat (limited to 'sysdeps/arm')
-rw-r--r-- | sysdeps/arm/Makefile | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/sysdeps/arm/Makefile b/sysdeps/arm/Makefile index 2849aeda42..ad2042b93a 100644 --- a/sysdeps/arm/Makefile +++ b/sysdeps/arm/Makefile @@ -51,11 +51,6 @@ sysdep_routines += $(aeabi_constants) $(aeabi_routines) static-only-routines += $(aeabi_constants) aeabi_read_tp shared-only-routines += libc-aeabi_read_tp -# In order for unwinding to fail when it falls out of main, we need a -# cantunwind marker. There's one in start.S. To make sure we reach it, add -# unwind tables for __libc_start_main. -CFLAGS-libc-start.c += -fexceptions - sysdep_routines += arm-unwind-resume shared-only-routines += arm-unwind-resume endif @@ -64,10 +59,6 @@ ifeq ($(subdir),gmon) sysdep_routines += arm-mcount endif -ifeq ($(subdir),debug) -CFLAGS-backtrace.c += -funwind-tables -endif - ifeq ($(subdir),rt) librt-sysdep_routines += rt-aeabi_unwind_cpp_pr1 rt-arm-unwind-resume librt-shared-only-routines += rt-aeabi_unwind_cpp_pr1 rt-arm-unwind-resume |