diff options
author | Alexey Neyman <stilor@att.net> | 2017-08-26 12:29:34 -0700 |
---|---|---|
committer | Alexey Neyman <stilor@att.net> | 2017-08-26 13:01:44 -0700 |
commit | 8aa8a2cbc9c9a34a099c41f9781543f34d39c40b (patch) | |
tree | cf7371b80f480e1d2ae8f6b1c46f7d6ac20ef4e0 /packages/glibc/2.14/230-no-inline-gmon.patch | |
parent | 5324905c1446d898d9a8f578555c1e54a2fbc89c (diff) | |
download | crosstool-ng-8aa8a2cbc9c9a34a099c41f9781543f34d39c40b.tar.gz crosstool-ng-8aa8a2cbc9c9a34a099c41f9781543f34d39c40b.tar.bz2 crosstool-ng-8aa8a2cbc9c9a34a099c41f9781543f34d39c40b.zip |
Missed glibc 2.14 when obsoleting releases
Superseded on the branch by 2.14.1.
Signed-off-by: Alexey Neyman <stilor@att.net>
Diffstat (limited to 'packages/glibc/2.14/230-no-inline-gmon.patch')
-rw-r--r-- | packages/glibc/2.14/230-no-inline-gmon.patch | 36 |
1 files changed, 0 insertions, 36 deletions
diff --git a/packages/glibc/2.14/230-no-inline-gmon.patch b/packages/glibc/2.14/230-no-inline-gmon.patch deleted file mode 100644 index fa33c2b4..00000000 --- a/packages/glibc/2.14/230-no-inline-gmon.patch +++ /dev/null @@ -1,36 +0,0 @@ -http://bugs.gentoo.org/196245 -http://sourceware.org/ml/libc-alpha/2006-05/msg00017.html - -Attached is a patch to add __attribute__ ((noinline)) to -call_gmon_start. - -Without this patch, the sec script that processed initfini.s removes a -part of inlined call_gmon_start, causing undefined label errors. - -This patch solves the problem by forcing gcc not to inline -call_gmon_start with __attribute__ ((noinline)). - -Tested by building for arm-none-lixux-gnueabi. OK to apply? - -Kazu Hirata - -2006-05-07 Kazu Hirata <kazu@codesourcery.com> - - * sysdeps/generic/initfini.c (call_gmon_start): Add - __attribute__ ((noinline)). - -Index: sysdeps/generic/initfini.c -=================================================================== - -diff -durN glibc-2.13.orig/sysdeps/generic/initfini.c glibc-2.13/sysdeps/generic/initfini.c ---- glibc-2.13.orig/sysdeps/generic/initfini.c 2007-06-17 20:02:40.000000000 +0200 -+++ glibc-2.13/sysdeps/generic/initfini.c 2009-11-13 00:50:09.000000000 +0100 -@@ -70,7 +70,7 @@ - /* The beginning of _init: */ - asm ("\n/*@_init_PROLOG_BEGINS*/"); - --static void -+static void __attribute__ ((noinline)) - call_gmon_start(void) - { - extern void __gmon_start__ (void) __attribute__ ((weak)); /*weak_extern (__gmon_start__);*/ |