]> git.ipfire.org Git - thirdparty/glibc.git/commitdiff
Add -fno-asynchronous-unwind-tables to initfini.s for i386
authorH.J. Lu <hongjiu.lu@intel.com>
Mon, 16 Aug 2010 03:09:23 +0000 (20:09 -0700)
committerAndreas Schwab <schwab@redhat.com>
Wed, 1 Dec 2010 14:35:10 +0000 (15:35 +0100)
(cherry picked from commit f8392f40049cf6faedcf4f26736227d9a7a04b9e)

ChangeLog
nptl/ChangeLog
nptl/sysdeps/unix/sysv/linux/i386/Makefile [new file with mode: 0644]
sysdeps/i386/elf/Makefile [new file with mode: 0644]

index 50c75b6f0980f9a899a22e8038e25cf5c35e0f28..06edc76ebb424703e4b080a9e3686fcf2b64c7b9 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2010-08-12  H.J. Lu  <hongjiu.lu@intel.com>
+
+       * sysdeps/i386/elf/Makefile: New file.
+
 2010-07-31  Samuel Thibault  <samuel.thibault@ens-lyon.org>
 
        * hurd/hurdselect.c (_hurd_select): Round timeout up instead of down
index a6b98bb24efade9f1e0393e99ec1142568f2eba2..c3c11043a6f25e7002c442389e80fd3d45f457c6 100644 (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-07-01  Ulrich Drepper  <drepper@redhat.com>
 
        * 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 (file)
index 0000000..48eef38
--- /dev/null
@@ -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 (file)
index 0000000..61064d4
--- /dev/null
@@ -0,0 +1,4 @@
+ifeq ($(subdir),csu)
+# Turn off -fasynchronous-unwind-tables
+CFLAGS-initfini.s += -fno-asynchronous-unwind-tables
+endif