aboutsummaryrefslogtreecommitdiff
path: root/scripts
Commit message (Collapse)AuthorAgeFilesLines
...
* Be verbose when making build system tools available, and when access is ↵Yann E. MORIN"2007-05-221-8/+9
| | | | | | | removed. Log this to DEBUG. Remove last remnants of color scheme. Small fixes to some comments.
* Implement a restart facility.Yann E. MORIN"2007-05-222-192/+355
| | | | | | | | 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>
* Fix warning about setting --host and not --build.Yann E. MORIN"2007-05-221-1/+2
|
* Upgrade scripts/tarball.sh and scripts/saveSample.sh to use the new logging ↵Yann E. MORIN"2007-05-222-7/+4
| | | | facility.
* Move the config script for the build dir to the source dir.Yann E. MORIN"2007-05-211-4/+4
| | | | That will be useful when we have the restart functionality.
* Fix gdb to install in CT_PREFIX_DIR rather than CT_INSTALL_DIR.Yann E. MORIN"2007-05-201-1/+1
| | | | One day, I swear, I will implement the install directory option. But later.
* Ah! I finally have a progress bar that doesn't stall the build!Yann E. MORIN"2007-05-202-16/+21
| | | | | | | | | | | | | | | | | - 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.
* Add uClibc-0.9.29:Yann E. MORIN"2007-05-193-8/+38
| | | | | | | - 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.
* Correctly handle the libfloat case: download, extract and patch sub-actions.Yann E. MORIN"2007-05-193-22/+16
| | | | Small improvement in messages in scipts/functions when retrieving a file.
* Un-mark gdb and dmalloc being EXPERIMENTAL.Yann E. MORIN"2007-05-181-3/+3
| | | | Mark native gdb as being EXPERIMENTAL (it depends on termcap, which we don't have yet).
* Little fix up in a message during the dmalloc build.Yann E. MORIN"2007-05-181-1/+1
|
* Add dmalloc debug library facility.Yann E. MORIN"2007-05-181-0/+53
| | | | | Add patches for dmalloc. Ignore the generated config/debug.in
* Really use local copy first in case it does not have the same extension as ↵Yann E. MORIN"2007-05-181-19/+18
| | | | the downloadable tarball.
* Remove even more documentation.Yann E. MORIN"2007-05-181-2/+3
|
* Make the debug config menu a generated file.Yann E. MORIN"2007-05-172-3/+3
| | | | | | Add a uClibc-0.9.29 patch directory with one patch (from me!). Update the armeb-unknown-linux-uclibc sample to uClibc-0.9.29. Some eyecandy in the gdb build process.
* Debug facilities:Yann E. MORIN"2007-05-175-84/+246
| | | | | | | | | | | | | | | | | | | - add a framework to easily add new ones - add gdb as a first debug facility - add patches for gdb After the kernel checked its installed headers, clean up the mess of .checked.* files. Reorder scripts/crosstool.sh: - dump the configuration early - renice early - get info about build system early, when setting up the environment - when in cross or native, the host tools are those of the build system, and only in this case - elapsed time calculations moved to scripts/functions Remove handling of the color: it's gone once and for all. Update tools/addToolVersion.sh: - handle debug facilities - commonalise some code - remove dead tools (cygwin, tcc) Point to my address for bug reports.
* Move the whole threading ;odel choice out of glibc and into the generic C ↵Yann E. MORIN"2007-05-141-1/+1
| | | | | | | library options: even uClibc may have NPTL at one point in the (hopefully near) future. Mark the progress bar as being CPU-intensive. Little style fix to the core C compiler build step.
* Oupsss... Didn't save scripts/crosstool.sh prior to comiting. :-(Yann E. MORIN"2007-05-131-3/+0
|
* Remove dead entries for components not yet integrated: cygwin kernel, tcc...Yann E. MORIN"2007-05-134-1/+1
| | | | Some fixups in config entries, to avoid warnings when parsed by the kconfig parser.
* Correctly handle the version string, defined in a single place now.Yann E. MORIN"2007-05-132-4/+1
| | | | Fix and update README.
* New make target to save the configured nad built!) toolchain.Yann E. MORIN"2007-05-121-0/+88
|
* Update the way we handle directories supplied by the user:Yann E. MORIN"2007-05-102-98/+111
| | | | | | | - the tarball directory is considered as a local copy, and tarballs are copied to a working area, - the sources and build directories (CT_SRC_DIR and CT_BUILD_DIR) are now computed, and no longer an option, - the build dir has been renamed from 'build' to 'targets'. That should ease preparing a tarball of the resulting target.
* Clean the sample saving script.Yann E. MORIN"2007-05-101-5/+3
|
* libfloat is a component by itself, not a sup-part of the C library.Yann E. MORIN"2007-05-092-1/+1
|
* Again, some progress bar optimisation.Yann E. MORIN"2007-05-092-26/+12
|
* Hop, a somewhat more efficient progress bar, less CPU consuming, if that was ↵Yann E. MORIN"2007-05-082-5/+7
| | | | | | a problem :-) (a litlle recreation while toochains are building...)
* Beautify the progress bar.Yann E. MORIN"2007-05-081-5/+4
|
* Fix handling of downloader output: they are now correctly logged using the ↵Yann E. MORIN"2007-05-081-3/+3
| | | | internal log facility.
* Huge fixes to glibc build, so that we can build at least (and at last):Yann E. MORIN"2007-05-089-75/+90
| | | | | | | | | | | | | | | | | | | | | | | | - use ports addon even when installing headers, - use optimisation (-O) when installing headers, to avoid unnecessary warnings (thanks Robert P. J. DAY for pointing this out!), - lowest kernel version to use is only X.Y.Z, not X.Y.Z.T, - a bit of preparations for NPTL (RSN I hope), - fix fixing the linker scripts (changing the backup file is kind of useless and stupid); Shut uClibc finish step: there really is nothing to do; Add a patch for glibc-2.3.6 weak aliases handling on some archs (ARM and ALPHA at least); Did not catch the make errors: fixed the pattern matching in scripts/functions; Introduce a new log level, ALL: - send components' build messages there, - DEBUG log level is destined only for crosstool-NG debug messages, - migrate sub-actions to use appropriate log levels; Update the armeb-unknown-linux-gnu sample: - it builds! - uses gcc-4.0.4 and glibc-2.3.6, - updated to latest config options set.
* Inform that a component is already extracted.Yann E. MORIN"2007-05-081-1/+4
|
* Print the elapsed time alongside with the progress bar, such as below:Yann E. MORIN"2007-05-082-6/+13
| | | | [02:27] \
* Cosmetics: newline at end of file, ports are now a separate option.Yann E. MORIN"2007-05-081-0/+1
|
* Print the major components and their version when calling "make help".Yann E. MORIN"2007-05-081-0/+30
|
* Bah. Be silent when there is nothing to do: glibc has no config (file) to check.Yann E. MORIN"2007-05-081-3/+1
|
* Don't make checking the kernel config file a step by itself. Only make it a ↵Yann E. MORIN"2007-05-071-4/+0
| | | | step if we need a not-provided kernel config file.
* Simplify kernel config file need.Yann E. MORIN"2007-05-071-2/+7
| | | | Don't build a default config file when not needed.
* Fix glibc and uClibc downloading and extracting.Yann E. MORIN"2007-05-075-9/+37
| | | | | | Although we no longer need the kernel config file, we now need to specify the kernel source directory when installing headers. Re-order components downloading to match build order. Fix the saveSample.sh script in case the referenced files are the same as the destination files.
* Merge the save-sample branch to trunk:Yann E. MORIN"2007-05-0712-561/+673
| | | | | | - reorder most of the environment setup, - geting, extracting and patching are now components' sub-actions, - save the current config as a sample to be used as a pre-configured target.
* Linux kernel headers install does not need the kernel to be configured. ↵Yann E. MORIN"2007-05-061-7/+0
| | | | Dropping this unneccessary step.
* Some little cosmetics in final compiler.Yann E. MORIN"2007-05-011-3/+3
|
* The linux kernel config file is now optional. If none is given, a default ↵Yann E. MORIN"2007-04-231-2/+15
| | | | one is created using the default target for the given architecture.
* Fixed a non-fatal bug in a sed expression.Yann E. MORIN"2007-04-232-5/+5
| | | | Some cosmetics as well.
* Second shot at merging from the MIPS branch:Yann E. MORIN"2007-04-231-7/+12
| | | | | | - log level boost for warnings and errors - option re-ordering - help updating
* Merge missing ABI code from the MIPS branch.Yann E. MORIN"2007-04-231-0/+3
|
* Merge first shot from the MIPS branch.Yann E. MORIN"2007-04-212-0/+2
|
* Try to further fix using of the build and/or host tools for binutils to ↵Yann E. MORIN"2007-04-181-2/+4
| | | | build properly.
* Add an option for those having the kernel headers pre-installed from a ↵Yann E. MORIN"2007-04-112-35/+57
| | | | | | customised local tree. In that case, neither download, nor extract, nor patch.
* Ah! Recent versions of binutils need some of the build system (read ↵Yann E. MORIN"2007-04-101-1/+9
| | | | | | CT_BUILD) tools to be accessible (ar is but an example). Fix typo.
* Update config.guess.Yann E. MORIN"2007-04-101-1/+1
| | | | Minor comment fix.
* Patch from Enrico WEIGELT <weigelt@metux.de> to disable __cxa_atexit for ↵Yann E. MORIN"2007-03-212-2/+2
| | | | those C libraries with no support (old uClibc).