summaryrefslogtreecommitdiff
path: root/scripts
AgeCommit message (Collapse)AuthorFilesLines
2008-05-03Some people are reposrting that ftp does not work on their network, probably ↵Yann E. MORIN"8-24/+14
due to proxies, while http does work. Some (most) of the sites we use toretrieve tarballs have http equivallent for the ftp service. Use http as a failover. There's no solution for those sites that do not have such an http equivalent. /trunk/scripts/build/binutils.sh | 5 2 3 0 ++--- /trunk/scripts/build/libc_glibc.sh | 4 2 2 0 ++-- /trunk/scripts/build/libc_uClibc.sh | 2 1 1 0 +- /trunk/scripts/build/debug/400-ltrace.sh | 2 1 1 0 +- /trunk/scripts/build/debug/300-gdb.sh | 8 3 5 0 +++----- /trunk/scripts/build/kernel_linux.sh | 7 2 5 0 ++----- /trunk/scripts/build/cc_gcc.sh | 6 2 4 0 ++---- /trunk/scripts/build/gmp.sh | 4 1 3 0 +--- 8 files changed, 14 insertions(+), 24 deletions(-)
2008-05-03Fix tools.sh and debug.sh now the tools/ and debug/ sub-dirs are numerically ↵Yann E. MORIN"2-4/+4
sorted. /trunk/scripts/build/debug.sh | 4 2 2 0 ++-- /trunk/scripts/build/tools.sh | 4 2 2 0 ++-- 2 files changed, 4 insertions(+), 4 deletions(-)
2008-05-02Fix testing glibc versions for -pipe.Yann E. MORIN"1-2/+4
/trunk/scripts/build/libc_glibc.sh | 6 4 2 0 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-)
2008-05-02Comment more a mis-leading comment in the glibc build procedure.Yann E. MORIN"1-0/+5
/trunk/scripts/build/libc_glibc.sh | 5 5 0 0 +++++ 1 file changed, 5 insertions(+)
2008-05-02For tools/ and debug/ build scripts, annd a numeric prefix, so that they ↵Yann E. MORIN"11-2/+2
always get built in the same order, in case of library dependencies. /trunk/scripts/build/debug.sh | 2 1 1 0 +- /trunk/scripts/build/tools.sh | 2 1 1 0 +- 2 files changed, 2 insertions(+), 2 deletions(-)
2008-05-02Add a new help entry to list each samples more verbosely, but only on-demand.Yann E. MORIN"1-1/+31
/trunk/samples/samples.mk | 4 4 0 0 ++++ /trunk/scripts/showSamples.sh | 32 31 1 0 +++++++++++++++++++++++++++++++- 2 files changed, 35 insertions(+), 1 deletion(-)
2008-04-30Do not try to download, extract, or build GMP and MPFR if not asked for.Yann E. MORIN"2-1/+22
/trunk/scripts/build/gmp.sh | 12 11 1 0 +++++++++++- /trunk/scripts/build/mpfr.sh | 11 11 0 0 +++++++++++ 2 files changed, 22 insertions(+), 1 deletion(-)
2008-04-30Merge the fortran stuff to trunk now it works!Yann E. MORIN"5-6/+119
Fortran is not supported for all targets, though. ARM at least does not work. /trunk/scripts/build/binutils.sh | 8 8 0 0 ++++++++ /trunk/scripts/build/cc_gcc.sh | 11 6 5 0 ++++++----- /trunk/scripts/crosstool.sh | 10 9 1 0 +++++++++- /trunk/tools/addToolVersion.sh | 3 3 0 0 +++ /trunk/steps.mk | 2 2 0 0 ++ /trunk/config/cc/gcc.in | 16 16 0 0 ++++++++++++++++ 6 files changed, 44 insertions(+), 6 deletions(-)
2008-04-28Build both shared and static versions of binutils' libraries for target.Yann E. MORIN"1-0/+1
/trunk/scripts/build/binutils.sh | 1 1 0 0 + 1 file changed, 1 insertion(+)
2008-04-28Do not forget binutils' target libraries in the list.Yann E. MORIN"1-2/+2
/trunk/scripts/build/binutils.sh | 4 2 2 0 ++-- 1 file changed, 2 insertions(+), 2 deletions(-)
2008-04-28Be alittle less verbose in the core CC pass 1 & 2.Yann E. MORIN"1-5/+0
/trunk/scripts/build/cc_gcc.sh | 5 0 5 0 ----- 1 file changed, 5 deletions(-)
2008-04-28Building target libraries before the cross-compiler is available is doomed! ↵Yann E. MORIN"2-17/+7
Move build binutils' target libraries after final gcc. Have a unique list of steps, it's easier to maintain. /trunk/scripts/build/binutils.sh | 8 5 3 0 +++++--- /trunk/scripts/crosstool.sh | 16 2 14 0 ++-------------- /trunk/steps.mk | 29 16 13 0 ++++++++++++++++------------- 3 files changed, 23 insertions(+), 30 deletions(-)
2008-04-27Add building some binutils libraries for the target, as some utilities might ↵Yann E. MORIN"1-0/+32
need them. /trunk/scripts/build/binutils.sh | 32 32 0 0 ++++++++++++++++++++++++++++++++ /trunk/config/binutils.in | 22 22 0 0 ++++++++++++++++++++++ 2 files changed, 54 insertions(+)
2008-04-27Offer an option to build a static cross-gdb.Yann E. MORIN"1-0/+9
/trunk/scripts/build/debug/gdb.sh | 9 9 0 0 +++++++++ /trunk/config/debug/gdb.in | 9 9 0 0 +++++++++ 2 files changed, 18 insertions(+)
2008-04-26Configure tsocks with a simple heuristic.Yann E. MORIN"1-9/+52
Consider the proxy has to be in a 'local' network. It means it is directly reachable by the local machine, even if the local machine has to hop through one or more gates to reach the proxy (often the case in enterprise networks where class A 10.0.0.0/8 is in fact sub-divided into smaller networks, each one of them in a different location, eg. 10.1.0.0/16 in a place, while 10.2.0.0/16 would be on the other side of the world). Not being in the same subnet does not mean the proxy is not available. So we will build a mask with at most high bits set, which defines a network that has both the local machine and the proxy. Because a machine may have more than one interface, build a mask for each of them, removing 127.0.0.1 which is added automagically by tsocks, and removing duplicate masks. If all of this does not work, then it means the local machine can NOT in fact reach the proxy, which in turn means the user mis-configured something (most probably a typo...). /trunk/scripts/crosstool.sh | 61 52 9 0 +++++++++++++++++++++++++++++++++++++++++++-------- 1 file changed, 52 insertions(+), 9 deletions(-)
2008-04-20Tss.... I was bieng real stupid while building up the tsocks.conf file. ↵Yann E. MORIN"1-22/+5
Implement a much simpler way. /trunk/scripts/crosstool.sh | 27 5 22 0 +++++---------------------- 1 file changed, 5 insertions(+), 22 deletions(-)
2008-04-18Using SOCKS 4/5 proxy is no easy task:Yann E. MORIN"1-6/+46
- a machine may well be able to reach the proxy, even if it is not on the same sub-net(s) as the machine itself (absolutely legitimate) - tsocks.conf needs a list of so-called 'local' networks that can be reached without the need for a SOCKS connection - SOCKS proxies are expected to be in 'local' networks - there is absolutely NO way to tell what networks are local, besides the sub-net(s) the machine is in Therefore, appropriate configuration of SOCKS 4/5 configuration is really complex, and attempts to correctly overcome this issue are doomed. /trunk/scripts/crosstool.sh | 52 46 6 0 ++++++++++++++++++++++++++++++++++---- /trunk/config/global/download_extract.in | 39 31 8 0 +++++++++++++++++++++++------ 2 files changed, 77 insertions(+), 14 deletions(-)
2008-04-18Fix using HTTP proxy.Yann E. MORIN"1-4/+5
/trunk/scripts/crosstool.sh | 9 5 4 0 +++++---- /trunk/config/global/download_extract.in | 2 1 1 0 +- 2 files changed, 6 insertions(+), 5 deletions(-)
2008-04-17Commit a long-standing eye-dcandy change in a log, that got lost in a vi ↵Yann E. MORIN"1-1/+1
crash... scripts/build/tools/sstrip.sh | 2 1 1 0 +- 1 file changed, 1 insertion(+), 1 deletion(-)
2008-04-17Add an option to use a SOCKS 4/5 proxy to connect to the internet.Yann E. MORIN"1-14/+31
As for the HTTP proxy, this is completetly untested, as I have no such proxy at home. scripts/crosstool.sh | 45 31 14 0 +++++++++++++++++-------- config/global.in | 95 81 14 0 +++++++++++++++++++++++++++++++++++++++++++-------- 2 files changed, 112 insertions(+), 28 deletions(-)
2008-04-13Allow using an HTTP proxy to tunnel FTP and HTTP requests.Yann E. MORIN"1-0/+14
scripts/crosstool.sh | 14 14 0 0 +++++++++++++ config/global.in | 54 54 0 0 +++++++++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 68 insertions(+)
2008-04-13Fix a comment.Yann E. MORIN"1-3/+3
functions | 6 3 3 0 +++--- 1 file changed, 3 insertions(+), 3 deletions(-)
2008-04-13Matthias Kaehlcke <matthias@kaehlcke.net> reported hanged downloads on hisYann E. MORIN"1-5/+12
network, most probably due to proxies. Have downloaders (wget and curl) timeout on too slow connections (they don't by default). scripts/functions | 17 12 5 0 ++++++++++++----- 1 file changed, 12 insertions(+), 5 deletions(-)
2008-02-14Robet P. J. DAY: typoes.Yann E. MORIN"2-3/+3
2008-01-28Patch from Michael Abbott <michael@araneidae.co.uk> to allow build to work ↵Yann E. MORIN"1-3/+3
with ancient findutils.
2008-01-16Move improperly installed gcc libraries to the sysroot.Yann E. MORIN"1-18/+5
Remove a huge comment that itself says it should have been deleted ages ago.
2008-01-16Fix a long standing bug when setting compiler flags.Yann E. MORIN"1-1/+1
2007-11-02Fix from Marco Fonseca <mfonseca@fortresstech.com> to use the newly-built, ↵Yann E. MORIN"1-3/+3
bootstrap cross-compiler when installing glibc headers.
2007-10-30Fix by "Arvid Brodin" <Arvid.Brodin@enea.com> to CFLAGS coming from ↵Yann E. MORIN"1-1/+1
CT_ARCH_TUNE. Thanks for spotting this one! ;-)
2007-09-23Do not try to save new;y downloaded tarballs to local storage if the ↵Yann E. MORIN"1-1/+7
directory does not exist.
2007-09-23Renamed all patches file names so that locales are now irrelevant to sort ↵Yann E. MORIN"1-16/+0
the files. Removed the locale check as it is now irrelevant. Removed the experimental binutils 2.17.50.0.xx: 2.18 is here now.
2007-09-16ARM EABI is now working for little endian ARM targets.Yann E. MORIN"4-9/+28
Big endian is still missing, though...
2007-09-16Call architecture-specific functions from all scripts needing them.Yann E. MORIN"3-1/+8
2007-09-16When sstrip is already downloaded, link instead of copying (as for all otherYann E. MORIN"1-3/+3
components). A little eye-candy fix.
2007-09-16Revert multilib handling. Even if we don't do multilib, we need to at leastYann E. MORIN"1-0/+5
say we don't, and not let gcc choose on its own (which it does wrong).
2007-09-15Further improve the architecture-specific framework.Yann E. MORIN"4-45/+31
Apply this framework into building of glibc and gcc. (Whoo! 500th commit! Yeah!)
2007-09-15We don't support Cygwin yet, no point in having quirks in.Yann E. MORIN"1-3/+0
2007-09-14Further expand the architecture-specific function: add CT_KERNEL_ARCH building.Yann E. MORIN"2-7/+3
2007-09-14Migrate all supported architectures to use the architecture-specific framework.Yann E. MORIN"2-43/+23
2007-09-14Add the framework to have architecture-specific configuration and functions.Yann E. MORIN"1-0/+3
API is not yet defined.
2007-09-14Small eye candy fix.Yann E. MORIN"1-3/+3
2007-09-14Fix setting floating point in uClibc (thanks to Szilveszter Ordog ↵Yann E. MORIN"1-2/+2
<ordog@mail.thot-soft.com>)
2007-09-11Merge from branches/ia64@476 : add ia64 preliminary support.Yann E. MORIN"1-0/+1
2007-09-08Use symlinks to the localy stored tarballs rather than copying them.Yann E. MORIN"1-3/+4
If saving tarballs to local storage is selected, move newly downloaded tarballs there and symlink.
2007-09-07Add D.U.M.A. 2_5_8 and associated patches.Yann E. MORIN"1-1/+1
Fix a patch for D.U.M.A 2_5_1. Add libelf 0.8.10, still does not build... :-(
2007-09-06Add a patch to enqable NPTL build on ARM OABI with glibc-2.6.1.Yann E. MORIN"1-1/+1
Fix a comment.
2007-09-06In some cases, dmalloc fails to build when building in parallel. Do not use ↵Yann E. MORIN"1-1/+1
-j# for dmalloc.
2007-09-02Bah, a really small cosmetic fix...Yann E. MORIN"1-1/+1
2007-09-02Print a log message when entering/leaving the two core compiler passes.Yann E. MORIN"1-1/+5
2007-08-16Fix restoring the environment.Yann E. MORIN"1-1/+1