| Commit message (Collapse) | Author | Age | Files | Lines |
| |
|
|
|
|
|
| |
Implement a much simpler way.
/trunk/scripts/crosstool.sh | 27 5 22 0 +++++----------------------
1 file changed, 5 insertions(+), 22 deletions(-)
|
| |
|
|
|
|
|
|
|
|
|
|
|
| |
- 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(-)
|
| |
|
|
|
|
| |
/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(-)
|
| |
|
|
|
|
|
|
| |
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(-)
|
| |
|
|
|
|
| |
scripts/crosstool.sh | 14 14 0 0 +++++++++++++
config/global.in | 54 54 0 0 +++++++++++++++++++++++++++++++++++++++++++++++++++
2 files changed, 68 insertions(+)
|
| | |
|
| |
|
|
| |
with ancient findutils.
|
| |
|
|
| |
directory does not exist.
|
| |
|
|
|
|
|
| |
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.
|
| |
|
|
| |
Big endian is still missing, though...
|
| | |
|
| |
|
|
|
|
| |
Apply this framework into building of glibc and gcc.
(Whoo! 500th commit! Yeah!)
|
| | |
|
| | |
|
| |
|
|
| |
API is not yet defined.
|
| | |
|
| |
|
|
|
| |
Document overriding the number of // jobs.
Some small documentation fixes.
|
| | |
|
| | |
|
| |
|
|
| |
This option is used as a sed expression to pass onto CT_TARGET to create an alias.
|
| |
|
|
| |
stop if the main script fails and ends before all directories were removed.
|
| | |
|
| | |
|
| |
|
|
|
|
|
|
|
|
| |
Rationale:
Most of the time, soft-float problems are caused by this sucker of gcc:
it has support for soft float for all of the targets I've tried so far,
but does not activate this code until you dwelve into half a dozen of
files to make it accept to build and link the support code...
So, yes: gcc has soft-float support. And again, yes: gcc is a sucker.
|
| |
|
|
| |
example). This fixes it.
|
| | |
|
| | |
|
| | |
|
| | |
|
| | |
|
| |
|
|
| |
"foobar was not found in /bin:/usr/bin:...." directly on stderr)
|
| |
|
|
|
|
|
|
|
| |
Homogenise the references to crosstool-NG:
- the project is named "crosstool-NG"
- the front-end is named "ct-ng"
- don't use shortcuts (such as "ct-ng" to stand for "crosstool-NG")
Default action is to print help.
Don't speak of make rules when dumping help, just speak of actions.
|
| |
|
|
|
|
|
|
| |
- ./configure --prefix=/some/place
- make
- make install
- export PATH="${PATH}:/some/place/bin"
- ct-ng <action>
|
| |
|
|
|
|
|
|
| |
"${CT_PREFIX_DIR}/build.log".
Add an option to compress the log file upon successfull build.
Make rendering the toolchain read-only optional.
A few eye-candy fixes.
|
| |
|
|
| |
Users of the log facility are in charge to use, move, delete this log file, now.
|
| |
|
|
| |
build.
|
| | |
|
| |
|
|
|
| |
- cc_core_pass_1 is really cc_core_static,
- cc_core_pass_2 is really cc_core_shared.
|
| |
|
|
| |
away...).
|
| | |
|
| | |
|
| |
|
|
| |
That still leaves the linuxthreads stuff broken, but it was just before. I don't care anyway. Time to fix that later...
|
| |
|
|
| |
Update the Makefile help and the documentation accordingly.
|
| | |
|
| |
|
|
|
|
|
| |
removed. Log this to DEBUG.
Remove last remnants of color scheme.
Small fixes to some comments.
|
| |
|
|
|
|
|
|
| |
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>
|
| |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
- 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.
|
| |
|
|
| |
Small improvement in messages in scipts/functions when retrieving a file.
|
| | |
|
| |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
- 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.
|