aboutsummaryrefslogtreecommitdiff
path: root/config/toolchain.in
Commit message (Collapse)AuthorAgeFilesLines
* Merge #1195, #1196 and #1203 from /devel/YEM-build_host_target_cleanup:Yann E. MORIN"2008-11-131-23/+137
| | | | | | | | | | | | | | | | - Get rid of CT_CC_NATIVE - Get rid of CT_CANADIAN_OPT - Sanitise CT_BUILD vs. CT_HOST /trunk/scripts/build/tools/200-sstrip.sh | 4 2 2 0 /trunk/scripts/build/binutils.sh | 1 0 1 0 - /trunk/scripts/build/cc/gcc.sh | 11 6 5 0 +- /trunk/scripts/build/debug/200-duma.sh | 3 1 2 0 - /trunk/scripts/build/libc/glibc.sh | 10 5 5 0 +- /trunk/scripts/build/libc/eglibc.sh | 8 4 4 0 +- /trunk/scripts/crosstool.sh | 168 113 55 0 ++++++++++++++++++++++++++------------ /trunk/config/toolchain.in | 160 137 23 0 +++++++++++++++++++++++++++++++----- 8 files changed, 268 insertions(+), 97 deletions(-)
* Introduce a new EXPERIMENTAL feature: BARE_METAL.Yann E. MORIN"2008-09-141-0/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This should ultimately llow to build bare-metal compilers, for targets that have no kernel and no C library. Move the C library build script to their own sub-directory; introduce an empty build script for bare-metal. Move the compiler build script to its own sub-directory. Move the kernel build script to its own sub-directory; introduce an empty build script for bare-metal. Update the ARM target tuples to enable bare-metal targets. Add two ARM bare-metal samples. Add latest Linux kernel versions. /trunk/scripts/build/kernel/none.sh | 77 6 71 0 +---- /trunk/scripts/build/cc/gcc.sh | 58 41 17 0 ++- /trunk/scripts/build/libc/none.sh | 513 9 504 0 +----------------------------- /trunk/scripts/crosstool.sh | 17 9 8 0 + /trunk/scripts/functions | 6 4 2 0 + /trunk/scripts/showSamples.sh | 6 3 3 0 /trunk/samples/arm-unknown-elf/crosstool.config | 225 225 0 0 +++++++++++++ /trunk/samples/arm-unknown-eabi/crosstool.config | 223 223 0 0 +++++++++++++ /trunk/config/kernel/linux_headers_install.in | 64 27 37 0 ++-- /trunk/config/kernel.in | 9 8 1 0 + /trunk/config/toolchain.in | 1 1 0 0 + /trunk/config/cc/gcc.in | 3 3 0 0 + /trunk/config/debug/dmalloc.in | 1 1 0 0 + /trunk/config/debug/gdb.in | 4 3 1 0 + /trunk/config/debug/strace.in | 1 1 0 0 + /trunk/config/debug/duma.in | 1 1 0 0 + /trunk/config/cc.in | 8 8 0 0 + /trunk/config/target.in | 13 13 0 0 + /trunk/config/binutils.in | 1 1 0 0 + /trunk/config/gmp_mpfr.in | 1 1 0 0 + /trunk/config/libc.in | 17 11 6 0 + /trunk/arch/arm/functions | 3 1 2 0 - 22 files changed, 600 insertions(+), 652 deletions(-)
* Typo.Yann E. MORIN"2008-08-211-1/+1
| | | | | /trunk/config/toolchain.in | 2 1 1 0 +- 1 file changed, 1 insertion(+), 1 deletion(-)
* Move the threading model choice back to the C library menu:Yann E. MORIN"2008-08-211-29/+0
| | | | | | | | | - the threading models available are dependent on the C library used - it is thus easier to first select the C libary, and then the threading model, rather going back to the toolchain menu. /trunk/config/toolchain.in | 29 0 29 0 ----------------------------- /trunk/config/libc.in | 47 38 9 0 ++++++++++++++++++++++++++++++++++++++--------- 2 files changed, 38 insertions(+), 38 deletions(-)
* Building multi-lib aware toolchains is not supported, and won'yt be before a ↵Yann E. MORIN"2008-05-241-18/+0
| | | | | | | loooong time. Remove the associated config entry. /trunk/config/toolchain.in | 18 0 18 0 ------------------ 1 file changed, 18 deletions(-)
* Robet P. J. DAY: typoes.Yann E. MORIN"2008-02-141-2/+2
|
* Change "triplet" (target triplet) to "tuple". That sounds better!Yann E. MORIN"2007-08-151-6/+6
| | | | | Document overriding the number of // jobs. Some small documentation fixes.
* Totally comment-out the multilib option: it's not implemented, and not ↵Yann E. MORIN"2007-08-141-15/+16
| | | | really implementable with the current crosstool-NG scheme.
* Introduce new config option: CT_TARGET_ALIAS_SED_EXPRYann E. MORIN"2007-08-071-1/+20
| | | | This option is used as a sed expression to pass onto CT_TARGET to create an alias.
* Threading model does not belong to the target sub-menu, but to the toolchain ↵Yann E. MORIN"2007-05-291-0/+29
| | | | sub-menu.
* Debug facilities:Yann E. MORIN"2007-05-171-0/+7
| | | | | | | | | | | | | | | | | | | - 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.
* Remove dead entries for components not yet integrated: cygwin kernel, tcc...Yann E. MORIN"2007-05-131-1/+0
| | | | Some fixups in config entries, to avoid warnings when parsed by the kconfig parser.
* Second shot at merging from the MIPS branch:Yann E. MORIN"2007-04-231-7/+0
| | | | | | - log level boost for warnings and errors - option re-ordering - help updating
* Add the EXPERIMENTAL option to show options marked as such.Yann E. MORIN"2007-04-171-0/+164
Add the four types of toolchains ct-ng is able to build as EXPERIMENTAL, except for CROSS which *is* functional. Reorder menus accordingly.