aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorH.J. Lu <hongjiu.lu@intel.com>2010-08-15 20:09:23 -0700
committerAndreas Schwab <schwab@redhat.com>2010-12-01 15:35:10 +0100
commit2be1c3e6f3dfd2e5d9f377ac9f279d2c3a378516 (patch)
tree3863d4ee6a89504cf7433d44ebbcae8e5bbceea3
parent57f69e95c9f89073d0bbc278670c94061d69c7a0 (diff)
downloadglibc-2be1c3e6f3dfd2e5d9f377ac9f279d2c3a378516.tar
glibc-2be1c3e6f3dfd2e5d9f377ac9f279d2c3a378516.tar.gz
glibc-2be1c3e6f3dfd2e5d9f377ac9f279d2c3a378516.tar.bz2
glibc-2be1c3e6f3dfd2e5d9f377ac9f279d2c3a378516.zip
Add -fno-asynchronous-unwind-tables to initfini.s for i386
(cherry picked from commit f8392f40049cf6faedcf4f26736227d9a7a04b9e)
-rw-r--r--ChangeLog4
-rw-r--r--nptl/ChangeLog4
-rw-r--r--nptl/sysdeps/unix/sysv/linux/i386/Makefile3
-rw-r--r--sysdeps/i386/elf/Makefile4
4 files changed, 15 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index 50c75b6f09..06edc76ebb 100644
--- 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
diff --git a/nptl/ChangeLog b/nptl/ChangeLog
index a6b98bb24e..c3c11043a6 100644
--- a/nptl/ChangeLog
+++ b/nptl/ChangeLog
@@ -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
index 0000000000..48eef38a24
--- /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 0000000000..61064d4ef7
--- /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