aboutsummaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
...
* scripts/samples: use the computed '$(sed)', not 'sed'Titus von Boxberg"2010-02-031-3/+3
|
* samples: fix this MIPS eglibc-based sampleYann E. MORIN"2010-02-181-33/+19
| | | | | Specify the SVN revision to use for the eglibc snapshot instead of HEAD, as some patches made their way upstream in the meantime.
* comp-libs: make libelf a companion libraryYann E. MORIN"2010-02-177-49/+119
| | | | | When gcc-4.5 is out, it will require libelf. So better make it a companion library now rather than postponing the ineluctable.
* complibs: hide companion libraries for target entryYann E. MORIN"2010-02-176-36/+63
| | | | | | The companion libraries on the target are required only for internal use by binutils and gdb. The user should not have to know about this, so hide the option.
* complibs: simplify config fileYann E. MORIN"2010-02-186-11/+22
| | | | | Although currently the wrapper is directly dependent on companion libraries, let's still decorelate those two.
* complibs: split-up selection for individual libsYann E. MORIN"2010-02-1713-71/+126
|
* binutils/binutils: fix using GMP and MPFRYann E. MORIN"2010-02-092-2/+13
|
* scripts: fix dumping 'other environment'Yann E. MORIN"2010-02-181-2/+2
| | | | Do not sort the environment, it cripples the output.
* cc/gcc: simplify the _or_later stuffYann E. MORIN"2010-02-042-8/+4
|
* scripts/showsamples: fix non-POSIX constructYann E. MORIN"2010-02-071-1/+1
|
* scripts: add action to extract config from a build.log fileYann E. MORIN"2010-02-113-5/+31
| | | | | That got removed quite some time ago, but is really usefull to get the configuration from a build.log file of a failing build.
* kernel/linux: add latest 2.6.32.8Yann E. MORIN"2010-02-111-0/+5
|
* config: re-order the log entries inthe menuconfigYann E. MORIN"2010-02-041-8/+8
|
* scripts: also dump the rest of the environmentTitus von Boxberg2010-02-031-0/+2
|
* scripts: use kernel name (uname -s) when system name (uname -o) is not availabeTitus von Boxberg2010-02-031-2/+2
| | | | 'uname -o' is a GNU extension.
* scripts/functions: fix date munging when ns are not availableTitus von Boxberg2010-02-031-1/+1
| | | | | | On some systems (eg. *BSD and Darwin), date does not support nanoseconds (%N) precision. Instead of printing '%N' in this case, it just prints 'N'. Fix the sed expression to handle this case.
* comp-libs/mpfr: fix build on DarwinTitus von Boxberg2010-02-031-0/+1
|
* libc/eglibc: Add option to optimize for sizeRichard Strand2010-02-012-1/+14
| | | | | | Add an option to eglibc to optimize for size using -Os. Signed-off-by: Richard Strand <richard.strand@icomera.com>
* samples: update samplesYann E. MORIN"2010-01-3144-3451/+1185
| | | | | Update to the latest set of config options (no config change). Remove OABI ARM samples.
* kernel/linux: add latest versions, remove old dot-releasesYann E. MORIN"2010-01-311-106/+26
|
* scripts: dump the current tuple with show-configYann E. MORIN"2010-01-312-1/+4
|
* scripts: add action to dump current configuration in humane-readable formYann E. MORIN"2010-01-313-9/+21
|
* libc/uClibc: remove EXPERIMENTAL for 0.9.30.2Yann E. MORIN"2010-01-311-2/+1
|
* debiug/ltrace: remove EXPERIMENTAL for 0.5.3, remove 0.5.1Yann E. MORIN"2010-01-311-7/+1
|
* debug/strace: remove EXPERIMENTAL for 4.5.19Yann E. MORIN"2010-01-311-2/+1
|
* comp-libs/mpfr: remove EXPERIMENTAL for 2.4.2Yann E. MORIN"2010-01-311-2/+1
|
* comp-libs/mpc: remove EXPERIMENTAL for 0.8.1Yann E. MORIN"2010-01-311-2/+1
|
* arch/sh: remove EXPERIMENTALYann E. MORIN"2010-01-311-1/+0
|
* arch/avr32: remove EXPERIMENTALYann E. MORIN"2010-01-311-1/+0
|
* libc/newlib: remove EXPERIMENTAL statusYann E. MORIN"2010-01-311-1/+1
| | | | | Although this have been only slightly tested, no one has really complained, and it seems to be working fine so far (on AVR32 at least).
* cc/gcc: remove 4.3.0Yann E. MORIN"2010-01-3130-1269/+0
| | | | gcc-4.3.0 never got !EXPERIMENTAL, and no one either confirmed nor complained.
* cc/gcc: remove EXPERIMENTAL for gcc-4.4Yann E. MORIN"2010-01-311-8/+4
|
* config: rename mirror prompt, update help entryYann E. MORIN"2010-01-311-4/+1
| | | | The mirror is not necessarily on the /LAN/.
* config: remove never used/implemented 'ls-lR'Yann E. MORIN"2010-01-311-15/+0
| | | | Use of listing (ls-lR) was never implemented, and never used.
* scripts: Do not create backup files when patchingYann E. MORIN"2010-01-311-1/+1
| | | | Some patches may apply with offset and/or fuzz, and would leave .orig files.
* libc/glibc: fix retrieving version stringYann E. MORIN"2010-01-301-2/+5
|
* scripts/functions: add git wrapperYann E. MORIN"2010-01-141-6/+88
| | | | | | Add a git wrapper to retrieve components from their git tree. Add a git wrapper to create a working copy (in our tarballs dir). Recognise git trees when searching for local copies.
* libc/glibc: get the version string from version.hYann E. MORIN"2010-01-121-2/+5
| | | | | | We can not rely on the user-provided version string (be it via the choice, or manually entered), so fallback to reading version.h, which is both reliable and always present.
* scripts/functions: change handling of nochdirYann E. MORIN"2010-01-126-21/+43
| | | | | - 'nochdir' must be the first option - have systematic pushd/popd, even if nochdir
* libc/glibc: move some options aroundYann E. MORIN"2009-12-131-28/+28
|
* libc/glibc: get rid of the now obsolete CVS stuffYann E. MORIN"2010-01-113-95/+34
| | | | | | It's now been a while that glibc switched to git from cvs. Get rid of cvs to download glibc; this will make for a good cleanup before we add git support! :-)
* libc/glibc: add 2.11 and 2.11.1Yann E. MORIN"2010-01-301-0/+12
|
* Merge.Yann E. MORIN"2010-01-292-11/+0
|\
| * global: do not offer the renice option, let's the user handle thatYann E. MORIN"2010-01-292-11/+0
| | | | | | | | | | | | | | | | | | | | It's broken anyway. Eg.: - user is already niced at 10 - user configures to renice at 5 - breaks because user is not allowed to 'boost' his/her nice value Bette let the user handle the renice with: nice -XX ct-ng 'action'
* | kernel/linux: remove legacy checkYann E. MORIN"2010-01-291-5/+0
| | | | | | | | | | Now, we only support building with Linux >=2.6.27. Get rid of the code that depended on <2.6.18.
* | binutils/elf2flt: activate elf2flt buildYann E. MORIN"2010-01-292-1/+11
| | | | | | | | | | The code has been lying around inactivated for some time. Let's enable it at last, and see if any one needs it.
* | arch: add basic m68k supportYann E. MORIN2010-01-294-0/+322
|/ | | | | | Signed-off-by: Remy Bohmer <linux@bohmer.net> [yann.morin.1998@anciens.enib.fr: use defaults for CT_TARGET_ARCH] Signed-off-by: "Yann E. MORIN <yann.morin.1998@anciens.enib.fr>
* cc/gcc: add latest 4.4.3, propagate patchset from 4.4.2Yann E. MORIN"2010-01-2429-0/+908
|
* Merge.Yann E. MORIN"2010-01-232-51/+31
|\
| * debug/gdb: fix the space-damageYann E. MORIN"2010-01-211-22/+22
| |