From: H.J. Lu Date: Mon, 16 Aug 2010 03:09:23 +0000 (-0700) Subject: Add -fno-asynchronous-unwind-tables to initfini.s for i386 X-Git-Tag: glibc-2.11.3~37 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=9d70662339289b8b49d1c83a486a49af128f1c0a;p=thirdparty%2Fglibc.git Add -fno-asynchronous-unwind-tables to initfini.s for i386 (cherry picked from commit f8392f40049cf6faedcf4f26736227d9a7a04b9e) --- diff --git a/ChangeLog b/ChangeLog index 56527153656..67dbf465aca 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +2010-08-12 H.J. Lu + + * sysdeps/i386/elf/Makefile: New file. + 2010-07-31 Samuel Thibault * hurd/hurdselect.c (_hurd_select): Round timeout up instead of down diff --git a/nptl/ChangeLog b/nptl/ChangeLog index 82ebdbe7616..73c65e65ff0 100644 --- a/nptl/ChangeLog +++ b/nptl/ChangeLog @@ -1,3 +1,7 @@ +2010-08-12 H.J. Lu + + * nptl/sysdeps/unix/sysv/linux/i386/Makefile: New file. + 2010-07-01 Ulrich Drepper * Makefile (tst-_res1): Add tst-_res1mod1 to dependency list. diff --git a/nptl/sysdeps/unix/sysv/linux/i386/Makefile b/nptl/sysdeps/unix/sysv/linux/i386/Makefile new file mode 100644 index 00000000000..48eef38a242 --- /dev/null +++ b/nptl/sysdeps/unix/sysv/linux/i386/Makefile @@ -0,0 +1,3 @@ +ifeq ($(subdir),nptl) +CFLAGS-pt-initfini.s += -fno-asynchronous-unwind-tables +endif diff --git a/sysdeps/i386/elf/Makefile b/sysdeps/i386/elf/Makefile new file mode 100644 index 00000000000..61064d4ef73 --- /dev/null +++ b/sysdeps/i386/elf/Makefile @@ -0,0 +1,4 @@ +ifeq ($(subdir),csu) +# Turn off -fasynchronous-unwind-tables +CFLAGS-initfini.s += -fno-asynchronous-unwind-tables +endif