Add -fno-asynchronous-unwind-tables to initfini.s for i386

This commit is contained in:
H.J. Lu 2010-08-15 20:09:23 -07:00 committed by Ulrich Drepper
parent 3162f12e58
commit f8392f4004
4 changed files with 15 additions and 0 deletions

View file

@ -1,3 +1,7 @@
2010-08-12 H.J. Lu <hongjiu.lu@intel.com>
* sysdeps/i386/elf/Makefile: New file.
2010-08-14 Andreas Schwab <schwab@linux-m68k.org>
* sysdeps/unix/sysv/linux/sys/fanotify.h: Remove third argument

View file

@ -1,3 +1,7 @@
2010-08-12 H.J. Lu <hongjiu.lu@intel.com>
* nptl/sysdeps/unix/sysv/linux/i386/Makefile: New file.
2010-05-01 Alan Modra <amodra@gmail.com>
* sysdeps/unix/sysv/linux/powerpc/powerpc64/sysdep-cancel.h

View file

@ -0,0 +1,3 @@
ifeq ($(subdir),nptl)
CFLAGS-pt-initfini.s += -fno-asynchronous-unwind-tables
endif

View file

@ -0,0 +1,4 @@
ifeq ($(subdir),csu)
# Turn off -fasynchronous-unwind-tables
CFLAGS-initfini.s += -fno-asynchronous-unwind-tables
endif