README
author "Yann E. MORIN" <yann.morin.1998@anciens.enib.fr>
Sun May 20 13:48:26 2007 +0000 (2007-05-20)
changeset 112 ea15433daba0
parent 88 f67b52e42fd1
child 185 ade232db1313
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
This is the README for crosstool-NG
yann@1
     2
yann@88
     3
To get you started, just enter:
yann@1
     4
  make help
yann@1
     5
yann@1
     6
You can find a (terse and WIP) documentation in docs/.
yann@1
     7
yann@1
     8
You can also point your browser to
yann@88
     9
  http://ymorin.is-a-geek.org/dokuwiki/projects/crosstool
yann@96
    10
yann@96
    11
If you need to send a bug report or a patch, please mail:
yann@96
    12
   yann.morin.1998 (at) anciens.enib.fr
yann@96
    13
with subject prefixed with "[CT_NG]"