patches/glibc/ports-2.10.1/110-binutils-2.20-compat.patch
author "Yann E. MORIN" <yann.morin.1998@anciens.enib.fr>
Tue Dec 13 23:32:39 2011 +0100 (2011-12-13)
branch1.13
changeset 2847 c0bf2319af08
permissions -rw-r--r--
scripts: fix dumping execution backtrace

Dumping the backtrace has been broken since changeset #652e56d6d35a:
scripts: execute each steps in a subshell

We can spawn sub-sub-shells in some cases.

The way the fault handler works is to dump the backtrace, but to avoid
printing it once for every sub-shell (which could get quite confusing),
it simply exits when it detects that it is being run in a sub-shell,
leaving to the top-level shell the work to dump the backtrace.

Because each step is executed in its own sub-shell, the variable arrays
that contain the step name, the source file and line number, are lost
when exiting the per-step sub-shell.

Hence, the backtrace is currently limited to printing only the top-level
main procedure of the shell.

Fix this thus:
- when dumping the bckatraces for the steps & the functions, remember
it was dumped, and only dump it if it was not already dumped
- at the top-level shell, print the hints

Also, rename the top-level step label.

Reported-by: Benoît Thébaudeau <benoit.thebaudeau@advansee.com>
Signed-off-by: "Yann E. MORIN" <yann.morin.1998@anciens.enib.fr>
(transplanted from 4193d6e6a17430a177fa88c287879c2c35e319f3)
yann@1625
     1
yann@1625
     2
yann@1625
     3
diff -durN glibc-2.10.1.orig/configure glibc-2.10.1/configure
yann@1625
     4
--- glibc-2.10.1.orig/configure	2009-05-17 14:19:31.000000000 +0200
yann@1625
     5
+++ glibc-2.10.1/configure	2009-11-13 00:49:43.000000000 +0100
yann@1625
     6
@@ -4839,7 +4839,7 @@
yann@1625
     7
   ac_prog_version=`$AS --version 2>&1 | sed -n 's/^.*GNU assembler.* \([0-9]*\.[0-9.]*\).*$/\1/p'`
yann@1625
     8
   case $ac_prog_version in
yann@1625
     9
     '') ac_prog_version="v. ?.??, bad"; ac_verc_fail=yes;;
yann@1625
    10
-    2.1[3-9]*)
yann@1625
    11
+    2.1[3-9]*|[2-9].[2-9]*)
yann@1625
    12
        ac_prog_version="$ac_prog_version, ok"; ac_verc_fail=no;;
yann@1625
    13
     *) ac_prog_version="$ac_prog_version, bad"; ac_verc_fail=yes;;
yann@1625
    14
 
yann@1625
    15
@@ -4902,7 +4902,7 @@
yann@1625
    16
   ac_prog_version=`$LD --version 2>&1 | sed -n 's/^.*GNU ld.* \([0-9][0-9]*\.[0-9.]*\).*$/\1/p'`
yann@1625
    17
   case $ac_prog_version in
yann@1625
    18
     '') ac_prog_version="v. ?.??, bad"; ac_verc_fail=yes;;
yann@1625
    19
-    2.1[3-9]*)
yann@1625
    20
+    2.1[3-9]*|[2-9].[2-9]*)
yann@1625
    21
        ac_prog_version="$ac_prog_version, ok"; ac_verc_fail=no;;
yann@1625
    22
     *) ac_prog_version="$ac_prog_version, bad"; ac_verc_fail=yes;;
yann@1625
    23
 
yann@1625
    24
diff -durN glibc-2.10.1.orig/configure.in glibc-2.10.1/configure.in
yann@1625
    25
--- glibc-2.10.1.orig/configure.in	2009-04-04 01:51:47.000000000 +0200
yann@1625
    26
+++ glibc-2.10.1/configure.in	2009-11-13 00:49:43.000000000 +0100
yann@1625
    27
@@ -897,10 +897,10 @@
yann@1625
    28
 # Accept binutils 2.13 or newer.
yann@1625
    29
 AC_CHECK_PROG_VER(AS, $AS, --version,
yann@1625
    30
 		  [GNU assembler.* \([0-9]*\.[0-9.]*\)],
yann@1625
    31
-		  [2.1[3-9]*], AS=: critic_missing="$critic_missing as")
yann@1625
    32
+		  [2.1[3-9]*|[2-9].[2-9]*], AS=: critic_missing="$critic_missing as")
yann@1625
    33
 AC_CHECK_PROG_VER(LD, $LD, --version,
yann@1625
    34
 		  [GNU ld.* \([0-9][0-9]*\.[0-9.]*\)],
yann@1625
    35
-		  [2.1[3-9]*], LD=: critic_missing="$critic_missing ld")
yann@1625
    36
+		  [2.1[3-9]*|[2-9].[2-9]*], LD=: critic_missing="$critic_missing ld")
yann@1625
    37
 
yann@1625
    38
 # We need the physical current working directory.  We cannot use the
yann@1625
    39
 # "pwd -P" shell builtin since that's not portable.  Instead we try to