[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[commits] r8604 - in /trunk/libc: ChangeLog.eglibc sysdeps/i386/Makefile
- To: commits@xxxxxxxxxx
- Subject: [commits] r8604 - in /trunk/libc: ChangeLog.eglibc sysdeps/i386/Makefile
- From: joseph@xxxxxxxxxx
- Date: Thu, 25 Jun 2009 15:46:41 -0000
Author: joseph
Date: Thu Jun 25 08:46:40 2009
New Revision: 8604
Log:
2009-06-25 Kazu Hirata <kazu@xxxxxxxxxxxxxxxx>
* sysdeps/i386/Makefile (CFLAGS-initfini.s): Add
-fno-asynchronous-unwind-tables and -fno-unwind-tables.
(CFLAGS-pt-initfini.s): New.
Modified:
trunk/libc/ChangeLog.eglibc
trunk/libc/sysdeps/i386/Makefile
Modified: trunk/libc/ChangeLog.eglibc
==============================================================================
--- trunk/libc/ChangeLog.eglibc (original)
+++ trunk/libc/ChangeLog.eglibc Thu Jun 25 08:46:40 2009
@@ -1,3 +1,9 @@
+2009-06-25 Kazu Hirata <kazu@xxxxxxxxxxxxxxxx>
+
+ * sysdeps/i386/Makefile (CFLAGS-initfini.s): Add
+ -fno-asynchronous-unwind-tables and -fno-unwind-tables.
+ (CFLAGS-pt-initfini.s): New.
+
2009-06-24 Mark Mitchell <mark@xxxxxxxxxxxxxxxx>
* debug/Makefile (LDFLAGS-tst-backtrace2): Define.
Modified: trunk/libc/sysdeps/i386/Makefile
==============================================================================
--- trunk/libc/sysdeps/i386/Makefile (original)
+++ trunk/libc/sysdeps/i386/Makefile Thu Jun 25 08:46:40 2009
@@ -8,7 +8,11 @@
ifeq ($(subdir),csu)
# On i686 we must avoid generating the trampoline functions generated
# to get the GOT pointer.
-CFLAGS-initfini.s += -march=i386 -mtune=i386
+CFLAGS-initfini.s += -march=i386 -mtune=i386 -fno-asynchronous-unwind-tables -fno-unwind-tables
+endif
+
+ifeq ($(subdir),nptl)
+CFLAGS-pt-initfini.s += -fno-asynchronous-unwind-tables -fno-unwind-tables
endif
ifeq ($(subdir),gmon)