2007-05-23A little eye conady in the Makefile.
"Yann E. MORIN" <yann.morin.1998@anciens.enib.fr> [Wed, 23 May 2007 21:39:18 +0000] rev 129
A little eye conady in the Makefile.

2007-05-23In CT_Abort(), don't send output to stderr. Let the log facility handle where things should go.
"Yann E. MORIN" <yann.morin.1998@anciens.enib.fr> [Wed, 23 May 2007 21:08:24 +0000] rev 128
In CT_Abort(), don't send output to stderr. Let the log facility handle where things should go.

2007-05-23Sanitise CT_DoBuildTargetTriplet a bit.
"Yann E. MORIN" <yann.morin.1998@anciens.enib.fr> [Wed, 23 May 2007 20:49:02 +0000] rev 127
Sanitise CT_DoBuildTargetTriplet a bit.

2007-05-23Correctly handle the log level overide in scripts/saveSample.sh.
"Yann E. MORIN" <yann.morin.1998@anciens.enib.fr> [Wed, 23 May 2007 19:07:54 +0000] rev 126
Correctly handle the log level overide in scripts/saveSample.sh.
Little eye candy in scripts/showSamples.sh.

2007-05-22Update mips-unknown-linux-uclibc to the latest set of config options.
"Yann E. MORIN" <yann.morin.1998@anciens.enib.fr> [Tue, 22 May 2007 21:19:47 +0000] rev 125
Update mips-unknown-linux-uclibc to the latest set of config options.

2007-05-22Mark broken samples as such: use a file named 'broken' in the sample's directory.
"Yann E. MORIN" <yann.morin.1998@anciens.enib.fr> [Tue, 22 May 2007 21:18:55 +0000] rev 124
Mark broken samples as such: use a file named 'broken' in the sample's directory.
Reflected this state when listing samples (in scripts/showSamples.sh).

2007-05-22Be verbose when making build system tools available, and when access is removed. Log this to DEBUG.
"Yann E. MORIN" <yann.morin.1998@anciens.enib.fr> [Tue, 22 May 2007 21:16:17 +0000] rev 123
Be verbose when making build system tools available, and when access is removed. Log this to DEBUG.
Remove last remnants of color scheme.
Small fixes to some comments.

2007-05-22Update the svn:ignore property to get rid of the ever-changing Eclipse files.
"Yann E. MORIN" <yann.morin.1998@anciens.enib.fr> [Tue, 22 May 2007 20:48:39 +0000] rev 122
Update the svn:ignore property to get rid of the ever-changing Eclipse files.

2007-05-22Implement a restart facility.
"Yann E. MORIN" <yann.morin.1998@anciens.enib.fr> [Tue, 22 May 2007 20:46:07 +0000] rev 121
Implement a restart facility.
If you select to debug ct-ng, then you have two new options:
- DEBUG_CT_PAUSE_STEPS : pause between every steps,
- DEBUG_CT_SAVE_STEPS : save state between every steps.
To restart a saved state, just set the RESTART make variable when calling make:
- make RESTART=<step_name>

2007-05-22Add two new versions to binutils.
"Yann E. MORIN" <yann.morin.1998@anciens.enib.fr> [Tue, 22 May 2007 20:42:21 +0000] rev 120
Add two new versions to binutils.

2007-05-22Update the mips-unknown-linux-uclibc sample to the new set of config options.
"Yann E. MORIN" <yann.morin.1998@anciens.enib.fr> [Tue, 22 May 2007 20:41:50 +0000] rev 119
Update the mips-unknown-linux-uclibc sample to the new set of config options.
Switch the ISA from mips32 to mips1.

2007-05-22Port the custom ISA patch to uClibc-0.9.29
"Yann E. MORIN" <yann.morin.1998@anciens.enib.fr> [Tue, 22 May 2007 20:37:46 +0000] rev 118
Port the custom ISA patch to uClibc-0.9.29

2007-05-22Only prompt for libfloat for those target that support it.
"Yann E. MORIN" <yann.morin.1998@anciens.enib.fr> [Tue, 22 May 2007 20:36:44 +0000] rev 117
Only prompt for libfloat for those target that support it.

2007-05-22Fix warning about setting --host and not --build.
"Yann E. MORIN" <yann.morin.1998@anciens.enib.fr> [Tue, 22 May 2007 20:36:05 +0000] rev 116
Fix warning about setting --host and not --build.

2007-05-22Upgrade scripts/tarball.sh and scripts/saveSample.sh to use the new logging facility.
"Yann E. MORIN" <yann.morin.1998@anciens.enib.fr> [Tue, 22 May 2007 20:33:43 +0000] rev 115
Upgrade scripts/tarball.sh and scripts/saveSample.sh to use the new logging facility.

2007-05-21Move the config script for the build dir to the source dir.
"Yann E. MORIN" <yann.morin.1998@anciens.enib.fr> [Mon, 21 May 2007 22:01:28 +0000] rev 114
Move the config script for the build dir to the source dir.
That will be useful when we have the restart functionality.

2007-05-20Fix gdb to install in CT_PREFIX_DIR rather than CT_INSTALL_DIR.
"Yann E. MORIN" <yann.morin.1998@anciens.enib.fr> [Sun, 20 May 2007 16:18:40 +0000] rev 113
Fix gdb to install in CT_PREFIX_DIR rather than CT_INSTALL_DIR.
One day, I swear, I will implement the install directory option. But later.

2007-05-20Ah! I finally have a progress bar that doesn't stall the build!
"Yann E. MORIN" <yann.morin.1998@anciens.enib.fr> [Sun, 20 May 2007 13:48:26 +0000] rev 112
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.

2007-05-20Forgot to svn add...
"Yann E. MORIN" <yann.morin.1998@anciens.enib.fr> [Sun, 20 May 2007 09:28:16 +0000] rev 111
Forgot to svn add...

2007-05-20Add gcc-4.2.0 (EXPERIMENTAL) and some patches vampirised from buildroot (302 rediffed against 4.2.0).
"Yann E. MORIN" <yann.morin.1998@anciens.enib.fr> [Sun, 20 May 2007 09:27:05 +0000] rev 110
Add gcc-4.2.0 (EXPERIMENTAL) and some patches vampirised from buildroot (302 rediffed against 4.2.0).

2007-05-19Fix adding versions for the core C compiler.
"Yann E. MORIN" <yann.morin.1998@anciens.enib.fr> [Sat, 19 May 2007 22:54:20 +0000] rev 109
Fix adding versions for the core C compiler.

2007-05-19Add uClibc-0.9.29:
"Yann E. MORIN" <yann.morin.1998@anciens.enib.fr> [Sat, 19 May 2007 22:52:47 +0000] rev 108
Add uClibc-0.9.29:
- associated patch set
- update the munging function to accomodate the new config variables
libfloat version was missing from the previous commit... :-(
Better handle the case where the sample directory already exist but isn't under revision control, and in case the destination file doesn't exist in the sample directory.

2007-05-19Correctly handle the libfloat case: download, extract and patch sub-actions.
"Yann E. MORIN" <yann.morin.1998@anciens.enib.fr> [Sat, 19 May 2007 13:10:11 +0000] rev 107
Correctly handle the libfloat case: download, extract and patch sub-actions.
Small improvement in messages in scipts/functions when retrieving a file.

2007-05-19Remove an incorrect path from uClibc-0.9.29: we _do_ need a xgcc to buld this header!
"Yann E. MORIN" <yann.morin.1998@anciens.enib.fr> [Sat, 19 May 2007 11:01:47 +0000] rev 106
Remove an incorrect path from uClibc-0.9.29: we _do_ need a xgcc to buld this header!

2007-05-18Un-mark gdb and dmalloc being EXPERIMENTAL.
"Yann E. MORIN" <yann.morin.1998@anciens.enib.fr> [Fri, 18 May 2007 19:55:49 +0000] rev 105
Un-mark gdb and dmalloc being EXPERIMENTAL.
Mark native gdb as being EXPERIMENTAL (it depends on termcap, which we don't have yet).

2007-05-18Little fix up in a message during the dmalloc build.
"Yann E. MORIN" <yann.morin.1998@anciens.enib.fr> [Fri, 18 May 2007 15:59:22 +0000] rev 104
Little fix up in a message during the dmalloc build.

2007-05-18Add dmalloc debug library facility.
"Yann E. MORIN" <yann.morin.1998@anciens.enib.fr> [Fri, 18 May 2007 15:57:16 +0000] rev 103
Add dmalloc debug library facility.
Add patches for dmalloc.
Ignore the generated config/debug.in

2007-05-18Really use local copy first in case it does not have the same extension as the downloadable tarball.
"Yann E. MORIN" <yann.morin.1998@anciens.enib.fr> [Fri, 18 May 2007 15:54:42 +0000] rev 102
Really use local copy first in case it does not have the same extension as the downloadable tarball.

2007-05-18Remove even more documentation.
"Yann E. MORIN" <yann.morin.1998@anciens.enib.fr> [Fri, 18 May 2007 15:48:11 +0000] rev 101
Remove even more documentation.

2007-05-18Reverting to uClibc-0.9.28.3, as 0.9.29 spawns incorrect bits/sysnum.h (needs a xgcc first!).
"Yann E. MORIN" <yann.morin.1998@anciens.enib.fr> [Fri, 18 May 2007 08:41:44 +0000] rev 100
Reverting to uClibc-0.9.28.3, as 0.9.29 spawns incorrect bits/sysnum.h (needs a xgcc first!).