patches/gcc/4.1.1/740-sh-pr24836.patch
author "Yann E. MORIN" <yann.morin.1998@anciens.enib.fr>
Sun May 20 13:48:26 2007 +0000 (2007-05-20)
changeset 112 ea15433daba0
permissions -rw-r--r--
Ah! I finally have a progress bar that doesn't stall the build!
- pipe size in Linux is only 8*512=4096 bytes
- pipe size is not setable
- when the feeding process spits out data faster than the eating
process can read it, then the feeding process stalls after 4KiB
of data sent to the pipe
- for us, the progress bar would spawn a sub-shell every line,
and the sub-shell would in turn spawn a 'date' command.
Which was sloooww as hell, and would cause some kind of a
starvation: the pipe was full most of the time, and the
feeding process was stalled all this time.

Now, we use internal variables and a little hack based onan offset
to determine the elapsed time. Much faster this way, but still
CPU-intensive.
yann@1
     1
http://sourceforge.net/mailarchive/forum.php?thread_id=8959304&forum_id=5348
yann@1
     2
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=24836
yann@1
     3
yann@1
     4
--- gcc/gcc/configure.ac	(revision 106699)
yann@1
     5
+++ gcc/gcc/configure.ac	(working copy)
yann@1
     6
@@ -2446,7 +2446,7 @@
yann@1
     7
 	tls_first_minor=14
yann@1
     8
 	tls_as_opt="-m64 -Aesame --fatal-warnings"
yann@1
     9
 	;;
yann@1
    10
-  sh-*-* | sh[34]-*-*)
yann@1
    11
+  sh-*-* | sh[34]*-*-*)
yann@1
    12
     conftest_s='
yann@1
    13
 	.section ".tdata","awT",@progbits
yann@1
    14
 foo:	.long	25
yann@1
    15
--- gcc/gcc/configure
yann@1
    16
+++ gcc/gcc/configure
yann@1
    17
@@ -14846,7 +14846,7 @@
yann@1
    18
 	tls_first_minor=14
yann@1
    19
 	tls_as_opt="-m64 -Aesame --fatal-warnings"
yann@1
    20
 	;;
yann@1
    21
-  sh-*-* | sh[34]-*-*)
yann@1
    22
+  sh-*-* | sh[34]*-*-*)
yann@1
    23
     conftest_s='
yann@1
    24
 	.section ".tdata","awT",@progbits
yann@1
    25
 foo:	.long	25