aboutsummaryrefslogtreecommitdiff
path: root/scripts/build/libc
Commit message (Collapse)AuthorAgeFilesLines
* libc/eglibc: Add option to optimize for sizeRichard Strand2010-02-011-1/+7
| | | | | | Add an option to eglibc to optimize for size using -Os. Signed-off-by: Richard Strand <richard.strand@icomera.com>
* libc/glibc: fix retrieving version stringYann E. MORIN"2010-01-301-2/+5
|
* 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-123-7/+7
| | | | | - 'nochdir' must be the first option - have systematic pushd/popd, even if nochdir
* libc/glibc: get rid of the now obsolete CVS stuffYann E. MORIN"2010-01-111-63/+28
| | | | | | 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/uClibc: fix the breakage for x86 and Super-H, after the 32/64 mergeYann E. MORIN"2010-01-231-2/+9
|
* libc/uclibc: use CT_ARCH, in place of CT_KERNEL_ARCHYann E. MORIN"2010-01-231-2/+2
| | | | | Since we merged the 32/64-bit archs, and we explicitly used the Linux kernel arch name, we can get rid of CT_KERNEL_ARCH.
* libc/glibc: use CT_ARCH, in place of CT_KERNEL_ARCHYann E. MORIN"2010-01-231-2/+2
| | | | | Since we merged the 32/64-bit archs, and we explicitly used the Linux kernel arch name, we can get rid of CT_KERNEL_ARCH.
* libc/glibc: correctly handle dual-bitness archsYann E. MORIN"2010-01-091-2/+10
| | | | | | If the selected ARCH is dual-bitness (eg. supports 32- and 64-bit), then we need to know the correct place where to fetch some headers. Currently, this applies only to x86 variants: i386 and x86_64.
* misc: do not use "tar cf - |tar xf -"Yann E. MORIN"2010-01-021-12/+10
| | | | | | | | | | | | | | Using this: tar cf - -C "/some/place" |tar xf - -C "/some/other/place" to copy a directory to another place does not properly fail (when it does). Using this instead: cp -av "/some/place" "/some/other/place" makes it easy to see why and how it failed. Impacted: libc/uClibc debug/ltrace tools/sstrip scripts/populate
* libc/uClibc: do not mangle ARM {E,O}ABI when ARCH != ARMYann E. MORIN"2010-01-011-11/+13
|
* libc/uClibc: beautify the munge functionYann E. MORIN"2010-01-011-91/+100
|
* libc/glibc: configure libc headers with support for 128-bit long doubleYann E. MORIN"2009-11-171-0/+2
| | | | | | | | | | At the headers install pass, there's no compiler to test for the size of long double. Help it: we know that the compiler does support 128-bit long double, in the IBM extended precision. Kindly pointed out, and explained, by Mike FRYSINGER: http://sourceware.org/ml/crossgcc/2009-11/msg00040.html http://sourceware.org/ml/crossgcc/2009-11/msg00057.html
* libc/uClibc: add wchar supportSimon Pasch2009-11-061-2/+11
|
* libc/glibc: allow more than one line in configparmsYann E. MORIN"2009-11-161-3/+3
|
* libc/newlib: allow using CVS snapshotsYann E. MORIN"2009-10-261-12/+27
| | | | | | | The newlib "team" rolls new releases about once a year (december). This is quite a long time between releases, in case code was fixed. So, allow user to use a CVS snapshot to benefit early from fixes and enhancements to newlib.
* libc/newlib: cleanup the build and finish stepsYann E. MORIN"2009-10-261-14/+12
| | | | | | | | | | | | build step: - ./configure - remove glibc-specific options - pass the target CFLAGS in the correct variable - make: - build in // finish step: - print proper message in finish step
* libc/newlib: fix host/target confusionYann E. MORIN"2009-10-251-2/+6
| | | | | | | newlib handles the build/host/target a bit differently as one would expect: build : not used host : the nachine that builds newlib target : the machine on which newlib will run
* eglibc: add support for user provided option groupsArnaud Vrac2009-10-091-2/+51
| | | | Signed-off-by: Arnaud Vrac <avrac@freebox.fr>
* Merge.Yann E. MORIN"2009-10-032-5/+5
|\
| * libc/eglibc: fix building for seemingly native toolchainsYann E. MORIN"2009-10-021-1/+1
| | | | | | | | | | | | | | | | | | | | Build eglibc with -O2 as a fix/workaround to building seemingly-native toolchains (see docs/overview.txt). See: - docs/overview.txt - docs/known-issues.txt - http://sourceware.org/ml/crossgcc/2009-10/msg00001.html
| * libc/glibc: fix building for seemingly native toolchainsYann E. MORIN"2009-10-021-4/+4
| | | | | | | | | | | | | | | | | | | | Build glibc with -O2 as a fix/workaround to building seemingly-native toolchains. See: - docs/overview.txt - docs/known-issues.txt - http://sourceware.org/ml/crossgcc/2009-09/msg00055.html
* | libc/glibc: don't use legacy snapshotsYann E. MORIN"2009-10-031-12/+0
| | | | | | | | | | glibc snapshots have not been updated for about the past 5 months. Consider them to be deprecated, now.
* | libc/glibc: remove dead codeYann E. MORIN"2009-10-021-2/+0
|/ | | | | | The option to retrieve snapshots is already handled by the generic 'specific date' and 'use latest' entries. No need for a special case, as there's no code for it.
* libc/eglibc: fix downloadYann E. MORIN"2009-09-121-1/+1
| | | | Fix the test to check if download is forced.
* glibc: fix build error caused by incorrect variable assignmentJim F2009-08-241-2/+2
| | | | | | During the conversion to using bash arrays, the glibc build script was improperly converted, and contains an incorrect variable assignment to the config_options array.
* Merge the bash_array branch.Yann E. MORIN"2009-08-192-55/+69
|\ | | | | | | | | | | For every components where it makes sense, use bash arrays (instead of a string with space-separated values) to store the options pased to ./configure.
| * Make glibc's extra_config an array containing ./configure optionsYann E. MORIN"2009-08-191-34/+44
| | | | | | | | Change extra_config from a string to a array of options.
| * Make eglibc's extra_config an array containing ./configure optionsYann E. MORIN"2009-08-191-12/+14
| | | | | | | | Change extra_config from a string to a array of options.
| * [libc-eglibc] Rewrite part of the codeYann E. MORIN"2009-07-271-9/+11
| | | | | | | | | | | | | | | | | | | | | | Rewrite part of the code to better match the rest. Most notably, rewrite handling of: if [ ... ] && [ ... ] to: if [ ... -a ... ] This has the positive side effect of calling "[" only once, although "[" is probably a shell built-in.
| * [libc-eglibc] Fix testing for existing filesYann E. MORIN"2009-07-271-8/+8
| | | | | | | | | | | | | | To test for existing files, use "[ -f blabla ]", not "[ -a blabla ]" Checking for a file exsitence with "-a" is a bashism. Althoug we _are_ using bash, it's disturbing as it can be misread as the 'and' operator. Fix by using "-f".
* | Merge the AVR32 support branch to the default branch.Yann E. MORIN"2009-08-081-0/+82
|\ \ | |/ |/|
| * Removed debug lineMartin Lund2009-06-201-2/+0
| |
| * Fix libc configMartin Lund2009-06-201-3/+4
| |
| * Misc AVR32 cleanups.Martin Lund2009-06-201-4/+0
| |
| * Changed copyrightMartin Lund2009-06-141-2/+2
| |
| * Added support for Atmel AVR32 headersMartin Lund"2009-05-231-2/+17
| |
| * Temp fix for newlib configure. Updated avr32 crosstool.config.Martin Lund"2009-05-221-3/+4
| |
| * Added initial AVR32 support (bare-metal,newlib)Martin Lund"2009-05-221-0/+71
| |
* | /devel/gcc-4.4:Yann E. MORIN"2009-06-011-8/+17
|/ | | | | | | | - fix buildging glibc in // -------- diffstat follows -------- /devel/gcc-4.4/scripts/build/libc/glibc.sh | 25 17 8 0 +++++++++++++++++-------- 1 file changed, 17 insertions(+), 8 deletions(-)
* Fix building uClibc:Yann E. MORIN"2009-05-111-1/+1
| | | | | | | | - fix headers installation -------- diffstat follows -------- /trunk/scripts/build/libc/uClibc.sh | 2 1 1 0 +- 1 file changed, 1 insertion(+), 1 deletion(-)
* Workaround for "PowerPC-8xx CPU15 errata" (whatever that might be).Yann E. MORIN"2009-05-071-1/+9
| | | | | | | | | Patch by Nye LIU: http://sourceware.org/ml/crossgcc/2009-05/msg00014.html -------- diffstat follows -------- /trunk/patches/eglibc/2_9/100-powerpc-8xx-CPU15-errata.patch | 49 49 0 0 ++++++++++++++++++ /trunk/scripts/build/libc/eglibc.sh | 10 9 1 0 +++- 2 files changed, 58 insertions(+), 1 deletion(-)
* Fix installing uClibc headers for versions prior to 0.9.30.Yann E. MORIN"2009-05-071-9/+23
| | | | | | | | | | Fix a comment about installing uClibc. Automatically enable // build for uClibc versions that can be built in //. -------- diffstat follows -------- /trunk/scripts/build/libc/uClibc.sh | 32 23 9 0 +++++++++++++++++++++++--------- /trunk/config/libc/uClibc.in | 12 7 5 0 +++++++----- 2 files changed, 30 insertions(+), 14 deletions(-)
* Get rid of the proxy settings, once and for all.Yann E. MORIN"2009-04-191-1/+0
| | | | | | | | | | | They have nothing to do in here, just let the user configure his/her system appropriately. -------- diffstat follows -------- /trunk/scripts/build/libc/eglibc.sh | 1 0 1 0 - /trunk/scripts/functions | 100 0 100 0 ----------------------------- /trunk/config/global/download.in | 148 0 148 0 ------------------------------------------- 3 files changed, 249 deletions(-)
* Only create the state dir if asked for a restartable build:Yann E. MORIN"2009-03-271-3/+3
| | | | | | | | | | | | | | - introduce the config dir, where components can store their config files - move the munged uClibc config file to the config dir - now, the state dir really is an indication that a build can be restarted Thanks to Groleo Marius <groleo@gmail.com> for spotting the inconsistency of the state dir usage, and suggesting this change. /trunk/scripts/build/libc/uClibc.sh | 6 3 3 0 +++--- /trunk/scripts/crosstool-NG.sh.in | 9 7 2 0 +++++++-- /trunk/scripts/functions | 15 12 3 0 ++++++++++++--- 3 files changed, 22 insertions(+), 8 deletions(-)
* Sanitise using glibc cvs exports:Yann E. MORIN"2009-03-151-59/+76
| | | | | | | | | - recently, tarballs for glibc 2.8 and 2.9 have appeared on the GNU ftp site - always use a dot in version strings (eg. 2.9, not 2_9) /trunk/scripts/build/libc/glibc.sh | 135 76 59 0 +++++++++++++++++++++++++------------------- /trunk/config/libc/glibc.in | 71 45 26 0 +++++++++++++++-------- 2 files changed, 121 insertions(+), 85 deletions(-)
* Use "grep -E" instead of the deprecated "egrep".Yann E. MORIN"2009-03-081-1/+1
| | | | | | | /trunk/scripts/build/debug/200-duma.sh | 2 1 1 0 +- /trunk/scripts/build/libc/uClibc.sh | 2 1 1 0 +- /trunk/scripts/crosstool-NG.sh.in | 4 2 2 0 ++-- 3 files changed, 4 insertions(+), 4 deletions(-)
* Re-instate the glibc/eglibc config option LIBC_GLIBC_CONFIGPARMS for use by ↵Yann E. MORIN"2009-03-051-7/+7
| | | | | | | | | | SuperH. Set appropriate defaults depending on target. /trunk/scripts/build/libc/glibc.sh | 14 7 7 0 +++++++------- /trunk/config/libc/glibc-eglibc.in-common | 15 15 0 0 +++++++++++++++ 2 files changed, 22 insertions(+), 7 deletions(-)
* On some hosts (eg. Cygwin), it's not possible to build the uClibc hostutils. ↵Yann E. MORIN"2009-02-111-27/+12
| | | | | | | | Offer an option to enable/disable the uClibc hostutils build. /trunk/scripts/build/libc/uClibc.sh | 39 12 27 0 ++++++++++++--------------------------- /trunk/config/libc/uClibc.in | 10 10 0 0 ++++++++++ 2 files changed, 22 insertions(+), 27 deletions(-)
* Put the uclibc munged config file in the "state" directory, so it survives a ↵Yann E. MORIN"2009-02-081-4/+4
| | | | | | | restart. /trunk/scripts/build/libc/uClibc.sh | 8 4 4 0 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-)