docs/overview.txt
author "Yann E. MORIN" <yann.morin.1998@anciens.enib.fr>
Sun Nov 16 21:55:46 2008 +0000 (2008-11-16)
changeset 1047 0c450efc5e3f
parent 1040 dc17e615de2c
child 1048 06521debb8ed
permissions -rw-r--r--
Honor the DESTDIR variable to install out-of-place (Eg. for packaging).

/trunk/configure | 10 10 0 0 +++++++++
/trunk/Makefile.in | 62 36 26 0 +++++++++++++++++++++++++++++++-----------------------
/trunk/docs/overview.txt | 12 12 0 0 ++++++++++
3 files changed, 58 insertions(+), 26 deletions(-)
     1 File.........: overview.txt
     2 Content......: Overview of how crosstool-NG works.
     3 Copyrigth....: (C) 2007 Yann E. MORIN <yann.morin.1998@anciens.enib.fr>
     4 License......: Creative Commons Attribution Share Alike (CC-by-sa), v2.5
     5 
     6 ____________________
     7                    /
     8 Table Of Content  /
     9 _________________/
    10 
    11 
    12 Introduction
    13 History
    14 Installing crosstool-NG
    15   Install method
    16   The hacker's way
    17   Shell completion
    18   Contributed code
    19   Preparing for packaging
    20 Configuring crosstool-NG
    21   Interesting config options
    22   Re-building an existing toolchain
    23 Running crosstool-NG
    24   Stopping and restarting a build
    25   Testing all toolchains at once
    26   Overriding the number of // jobs
    27 Using the toolchain
    28 Toolchain types
    29 Internals
    30   Makefile front-end
    31   Kconfig parser
    32   Architecture-specific
    33   Adding a new version of a component
    34   Build scripts
    35 
    36 ________________
    37                /
    38 Introduction  /
    39 _____________/
    40 
    41 crosstool-NG aims at building toolchains. Toolchains are an essential component
    42 in a software development project. It will compile, assemble and link the code
    43 that is being developed. Some pieces of the toolchain will eventually end up
    44 in the resulting binary/ies: static libraries are but an example.
    45 
    46 So, a toolchain is a very sensitive piece of software, as any bug in one of the
    47 components, or a poorly configured component, can lead to execution problems,
    48 ranging from poor performance, to applications ending unexpectedly, to
    49 mis-behaving software (which more than often is hard to detect), to hardware
    50 damage, or even to human risks (which is more than regrettable).
    51 
    52 Toolchains are made of different piece of software, each being quite complex
    53 and requiring specially crafted options to build and work seamlessly. This
    54 is usually not that easy, even in the not-so-trivial case of native toolchains.
    55 The work reaches a higher degree of complexity when it comes to cross-
    56 compilation, where it can become quite a nightmare...
    57 
    58 Some cross-toolchains exist on the internet, and can be used for general
    59 development, but they have a number of limitations:
    60   - they can be general purpose, in that they are configured for the majority:
    61     no optimisation for your specific target,
    62   - they can be prepared for a specific target and thus are not easy to use,
    63     nor optimised for, or even supporting your target,
    64   - they often are using aging components (compiler, C library, etc...) not
    65     supporting special features of your shiny new processor;
    66 On the other side, these toolchain offer some advantages:
    67   - they are ready to use and quite easy to install and setup,
    68   - they are proven if used by a wide community.
    69 
    70 But once you want to get all the juice out of your specific hardware, you will
    71 want to build your own toolchain. This is where crosstool-NG comes into play.
    72 
    73 There are also a number of tools that build toolchains for specific needs,
    74 which are not really scalable. Examples are:
    75   - buildroot (buildroot.uclibc.org) whose main purpose is to build root file
    76     systems, hence the name. But once you have your toolchain with buildroot,
    77     part of it is installed in the root-to-be, so if you want to build a whole
    78     new root, you either have to save the existing one as a template and
    79     restore it later, or restart again from scratch. This is not convenient,
    80   - ptxdist (www.pengutronix.de/software/ptxdist), whose purpose is very
    81     similar to buildroot,
    82   - other projects (openembedded.org for example), which are again used to
    83     build root file systems.
    84 
    85 crosstool-NG is really targeted at building toolchains, and only toolchains.
    86 It is then up to you to use it the way you want.
    87 
    88 ___________
    89           /
    90 History  /
    91 ________/
    92 
    93 crosstool was first 'conceived' by Dan Kegel, who offered it to the community
    94 as a set of scripts, a repository of patches, and some pre-configured, general
    95 purpose setup files to be used to configure crosstool. This is available at
    96 http://www.kegel.com/crosstool, and the subversion repository is hosted on
    97 google at http://code.google.com/p/crosstool/.
    98 
    99 I once managed to add support for uClibc-based toolchains, but it did not make
   100 into mainline, mostly because I didn't have time to port the patch forward to
   101 the new versions, due in part to the big effort it was taking.
   102 
   103 So I decided to clean up crosstool in the state it was, re-order the things
   104 in place, add appropriate support for what I needed, that is uClibc support
   105 and a menu-driven configuration, named the new implementation crosstool-NG,
   106 (standing for crosstool Next Generation, as many other comunity projects do,
   107 and as a wink at the TV series "Star Trek: The Next Generation" ;-) ) and
   108 made it available to the community, in case it was of interest to any one.
   109 
   110 ___________________________
   111                           /
   112 Installing crosstool-NG  /
   113 ________________________/
   114 
   115 There are two ways you can use crosstool-NG:
   116  - build and install it, then get rid of the sources like you'd do for most
   117    programs,
   118  - or only build it and run from the source directory.
   119 
   120 The former should be used if you got crosstool-NG from a packaged tarball, see
   121 "Install method", below, while the latter is most useful for developpers that
   122 checked the code out from SVN, and want to submit patches, see "The Hacker's
   123 way", below.
   124 
   125 Install method |
   126 ---------------+
   127 
   128 If you go for the install, then you just follow the classical, but yet easy
   129 ./configure way:
   130   ./configure --prefix=/some/place
   131   make
   132   make install
   133   export PATH="${PATH}:/some/place/bin"
   134 
   135 You can then get rid of crosstool-NG source. Next create a directory to serve
   136 as a working place, cd in there and run:
   137   ct-ng help
   138 
   139 See below for complete usage.
   140 
   141 The Hacker's way |
   142 -----------------+
   143 
   144 If you go the hacker's way, then the usage is a bit different, although very
   145 simple:
   146   ./configure --local
   147   make
   148 
   149 Now, *do not* remove crosstool-NG sources. They are needed to run crosstool-NG!
   150 Stay in the directory holding the sources, and run:
   151   ./ct-ng help
   152 
   153 See below for complete usage.
   154 
   155 Now, provided you checked-out the code, you can send me your interesting changes
   156 by running:
   157   svn diff
   158 
   159 and mailing me the result! :-P
   160 
   161 Shell completion |
   162 -----------------+
   163 
   164 crosstool-NG comes with a shell script fragment that defines bash-compatible
   165 completion. That shell fragment is currently not installed automatically, but
   166 this is planned.
   167 
   168 To install the shell script fragment, you have two options:
   169  - install system-wide, most probably by copying ct-ng.comp into
   170    /etc/bash_completion.d/
   171  - install for a single user, by copying ct-ng.comp into ${HOME}/ and
   172    sourcing this file from your ${HOME}/.bashrc
   173 
   174 Contributed code |
   175 -----------------+
   176 
   177 Some people contibuted code that couldn't get merged for various reasons. This
   178 code is available as patches in the contrib/ sub-directory. These patches are
   179 to be applied to the source of crosstool-NG, prior to installing.
   180 
   181 An easy way to use contributed code is to pass the --with-contrib= option to
   182 ./configure. The possible values depend upon which contributions are packaged
   183 with your version, but you can get with it with passing one of those two
   184 special values:
   185   --with-contrib=list
   186     will list all available contributions
   187 
   188   --with-contrib=all
   189     will select all avalaible contributions
   190 
   191 There is no guarantee that a particuliar contribution applies to the current
   192 version of crosstool-ng, or that it will work at all. Use contributions at
   193 your own risk.
   194 
   195 Preparing for packaging |
   196 ------------------------+
   197 
   198 If you plan on packaging crosstool-NG, you surely don't want to install it
   199 in your root file system. The install procedure of crosstool-NG honors the
   200 DESTDIR variable:
   201 
   202   ./configure --prefix=/usr
   203   make
   204   make DESDTDIR=/packaging/place install
   205 
   206 ____________________________
   207                            /
   208 Configuring crosstool-NG  /
   209 _________________________/
   210 
   211 crosstool-NG is configured with a configurator presenting a menu-stuctured set
   212 of options. These options let you specify the way you want your toolchain
   213 built, where you want it installed, what architecture and specific processor it
   214 will support, the version of the components you want to use, etc... The
   215 value for those options are then stored in a configuration file.
   216 
   217 The configurator works the same way you configure your Linux kernel. It is
   218 assumed you now how to handle this.
   219 
   220 To enter the menu, type:
   221   ct-ng menuconfig
   222 
   223 Almost every config item has a help entry. Read them carefully.
   224 
   225 String and number options can refer to environment variables. In such a case,
   226 you must use the shell syntax: ${VAR}. You shall neither single- nor double-
   227 quote the string/number options.
   228 
   229 There are three environment variables that are computed by crosstool-NG, and
   230 that you can use:
   231 
   232 CT_TARGET:
   233   It represents the target tuple you are building for. You can use it for
   234   example in the installation/prefix directory, such as:
   235     /opt/x-tools/${CT_TARGET}
   236 
   237 CT_TOP_DIR:
   238   The top directory where crosstool-NG is running. You shouldn't need it in
   239   most cases. There is one case where you may need it: if you have local
   240   patches and you store them in your running directory, you can refer to them
   241   by using CT_TOP_DIR, such as:
   242     ${CT_TOP_DIR}/patches.myproject
   243 
   244 CT_VERSION:
   245   The version of crosstool-NG you are using. Not much use for you, but it's
   246   there if you need it.
   247 
   248 Interesting config options |
   249 ---------------------------+
   250 
   251 CT_LOCAL_TARBALLS_DIR:
   252   If you already have some tarballs in a direcotry, enter it here. That will
   253   speed up the retrieving phase, where crosstool-NG would otherwise download
   254   those tarballs.
   255 
   256 CT_PREFIX_DIR:
   257   This is where the toolchain will be installed in (and for now, where it
   258   will run from). Common use is to add the target tuple in the directory
   259   path, such as (see above):
   260     /opt/x-tools/${CT_TARGET}
   261 
   262 CT_TARGET_VENDOR:
   263   An identifier for your toolchain, will take place in the vendor part of the
   264   target tuple. It shall *not* contain spaces or dashes. Usually, keep it
   265   to a one-word string, or use underscores to separate words if you need.
   266   Avoid dots, commas, and special characters.
   267 
   268 CT_TARGET_ALIAS:
   269   An alias for the toolchian. It will be used as a prefix to the toolchain
   270   tools. For example, you will have ${CT_TARGET_ALIAS}-gcc
   271 
   272 Also, if you think you don't see enough versions, you can try to enable one of
   273 those:
   274 
   275 CT_OBSOLETE:
   276   Show obsolete versions or tools. Most of the time, you don't want to base
   277   your toolchain on too old a version (of gcc, for example). But at times, it
   278   can come handy to use such an old version for regression tests. Those old
   279   versions are hidden behind CT_OBSOLETE.
   280 
   281 CT_EXPERIMENTAL:
   282   Show experimental versions or tools. Again, you might not want to base your
   283   toolchain on too recent tools (eg. gcc) for production. But if you need a
   284   feature present only in a recent version, or a new tool, you can find them
   285   hidden behind CT_EXPERIMENTAL.
   286 
   287 Re-building an existing toolchain |
   288 ----------------------------------+
   289 
   290 If you have an existing toolchain, you can re-use the options used to build it
   291 to create a new toolchain. That needs a very little bit of effort on your side
   292 but is quite easy. The options to build a toolchain are saved with the
   293 toolchain, and you can retrieve this configuration by running:
   294   ${CT_TARGET}-config
   295 
   296 This will dump the configuration to stdout, so to rebuild a toolchain with this
   297 configuration, the following is all you need to do:
   298   ${CT_TARGET}-config >.config
   299 
   300 Then, you can review and change the configuration by running:
   301   ct-ng menuconfig
   302 
   303 ________________________
   304                        /
   305 Running crosstool-NG  /
   306 _____________________/
   307 
   308 To build the toolchain, simply type:
   309   ct-ng build
   310 
   311 This will use the above configuration to retrieve, extract and patch the
   312 components, build, install and eventually test your newly built toolchain.
   313 
   314 You are then free to add the toolchain /bin directory in your PATH to use
   315 it at will.
   316 
   317 In any case, you can get some terse help. Just type:
   318   ct-ng help
   319 or:
   320   man 1 ct-ng
   321 
   322 Stopping and restarting a build |
   323 --------------------------------+
   324 
   325 If you want to stop the build after a step you are debugging, you can pass the
   326 variable STOP to make:
   327   ct-ng STOP=some_step
   328 
   329 Conversely, if you want to restart a build at a specific step you are
   330 debugging, you can pass the RESTART variable to make:
   331   ct-ng RESTART=some_step
   332 
   333 Alternatively, you can call make with the name of a step to just do that step:
   334   ct-ng libc_headers
   335 is equivalent to:
   336   ct-ng RESTART=libc_headers STOP=libc_headers
   337 
   338 The shortcuts +step_name and step_name+ allow to respectively stop or restart
   339 at that step. Thus:
   340   ct-ng +libc_headers        and:    ct-ng libc_headers+
   341 are equivalent to:
   342   ct-ng STOP=libc_headers    and:    ct-ng RESTART=libc_headers
   343 
   344 To obtain the list of acceptable steps, please call:
   345   ct-ng list-steps
   346 
   347 Note that in order to restart a build, you'll have to say 'Y' to the config
   348 option CT_DEBUG_CT_SAVE_STEPS, and that the previous build effectively went
   349 that far.
   350 
   351 Building all toolchains at once |
   352 --------------------------------+
   353 
   354 You can build all samples; simply call:
   355   ct-ng build-all
   356 
   357 Overriding the number of // jobs |
   358 ---------------------------------+
   359 
   360 If you want to override the number of jobs to run in // (the -j option to
   361 make), you can either re-enter the menuconfig, or simply add it on the command
   362 line, as such:
   363   ct-ng build.4
   364 
   365 which tells crosstool-NG to override the number of // jobs to 4.
   366 
   367 You can see the actions that support overriding the number of // jobs in
   368 the help menu. Those are the ones with [.#] after them (eg. build[.#] or
   369 build-all[.#], and so on...).
   370 
   371 Note on // jobs |
   372 ----------------+
   373 
   374 The crosstool-NG script 'ct-ng' is a Makefile-script. It does *not* execute
   375 in parallel (there is not much to gain). When speaking of // jobs, we are
   376 refering to the number of // jobs when making the *components*. That is, we
   377 speak of the number of // jobs used to build gcc, glibc, and so on...
   378 
   379 
   380 _______________________
   381                       /
   382 Using the toolchain  /
   383 ____________________/
   384 
   385 Using the toolchain is as simple as adding the toolchain's bin directory in
   386 your PATH, such as:
   387   export PATH="${PATH}:/your/toolchain/path/bin"
   388 
   389 and then using the target tuple to tell the build systems to use your
   390 toolchain:
   391   ./configure --target=your-target-tuple
   392 or
   393   make CC=your-target-tuple-gcc
   394 or
   395   make CROSS_COMPILE=your-target-tuple-
   396 and so on...
   397 
   398 It is strongly advised not to use the toolchain sys-root directory as an
   399 install directory for your programs/packages. If you do so, you will not be
   400 able to use your toolchain for another project. It is even strongly advised
   401 that your toolchain is chmod-ed to read-only once successfully build, so that
   402 you don't go polluting your toolchain with your programs/packages' files.
   403 
   404 Thus, when you build a program/package, install it in a separate directory,
   405 eg. /your/root. This directory is the /image/ of what would be in the root file
   406 system of your target, and will contain all that your programs/packages have
   407 installed.
   408 
   409 When your root directory is ready, it is still missing some important bits: the
   410 toolchain's libraries. To populate your root directory with those libs, just
   411 run:
   412   your-target-tuple-populate -s /your/root -d /your/root-populated
   413 
   414 This will copy /your/root into /your/root-populated, and put the needed and only
   415 the needed libraries there. Thus you don't polute /your/root with any cruft that
   416 would no longer be needed should you have to remove stuff. /your/root always
   417 contains only those things you install in it.
   418 
   419 You can then use /your/root-populated to build up your file system image, a
   420 tarball, or to NFS-mount it from your target, or whatever you need.
   421 
   422 populate accepts the following options:
   423 
   424  -s [src_dir]
   425     Use 'src_dir' as the 'source', un-populated root directory
   426 
   427  -d [dst_dir]
   428     Put the 'destination', populated root directory in 'dst_dir'
   429 
   430  -f
   431     Remove 'dst_dir' if it previously existed
   432 
   433  -v
   434     Be verbose, and tell what's going on (you can see exactly where libs are
   435     coming from).
   436 
   437  -h
   438     Print the help
   439 
   440 ___________________
   441                   /
   442 Toolchain types  /
   443 ________________/
   444 
   445 There are four kinds of toolchains you could encounter.
   446 
   447 First off, you must understand the following: when it comes to compilers there
   448 are up to four machines involved:
   449   1) the machine configuring the toolchain components: the config machine
   450   2) the machine building the toolchain components:    the build machine
   451   3) the machine running the toolchain:                the host machine
   452   4) the machine the toolchain is generating code for: the target machine
   453 
   454 We can most of the time assume that the config machine and the build machine
   455 are the same. Most of the time, this will be true. The only time it isn't
   456 is if you're using distributed compilation (such as distcc). Let's forget
   457 this for the sake of simplicity.
   458 
   459 So we're left with three machines:
   460  - build
   461  - host
   462  - target
   463 
   464 Any toolchain will involve those three machines. You can be as pretty sure of
   465 this as "2 and 2 are 4". Here is how they come into play:
   466 
   467 1) build == host == target
   468     This is a plain native toolchain, targetting the exact same machine as the
   469     one it is built on, and running again on this exact same machine. You have
   470     to build such a toolchain when you want to use an updated component, such
   471     as a newer gcc for example.
   472     crosstool-NG calls it "native".
   473 
   474 2) build == host != target
   475     This is a classic cross-toolchain, which is expected to be run on the same
   476     machine it is compiled on, and generate code to run on a second machine,
   477     the target.
   478     crosstool-NG calls it "cross".
   479 
   480 3) build != host == target
   481     Such a toolchain is also a native toolchain, as it targets the same machine
   482     as it runs on. But it is build on another machine. You want such a
   483     toolchain when porting to a new architecture, or if the build machine is
   484     much faster than the host machine.
   485     crosstool-NG calls it "cross-native".
   486 
   487 4) build != host != target
   488     This one is called a canadian-toolchain (*), and is tricky. The three
   489     machines in play are different. You might want such a toolchain if you
   490     have a fast build machine, but the users will use it on another machine,
   491     and will produce code to run on a third machine.
   492     crosstool-NG calls it "canadian".
   493 
   494 crosstool-NG can build all these kinds of toolchains (or is aiming at it,
   495 anyway!)
   496 
   497 (*) The term Canadian Cross came about because at the time that these issues
   498     were all being hashed out, Canada had three national political parties.
   499     http://en.wikipedia.org/wiki/Cross_compiler
   500 
   501 _____________
   502             /
   503 Internals  /
   504 __________/
   505 
   506 Internally, crosstool-NG is script-based. To ease usage, the frontend is
   507 Makefile-based.
   508 
   509 Makefile front-end |
   510 -------------------+
   511 
   512 The entry point to crosstool-NG is the Makefile script "ct-ng". Calling this
   513 script with an action will act exactly as if the Makefile was in the current
   514 working directory and make was called with the action as rule. Thus:
   515   ct-ng menuconfig
   516 
   517 is equivalent to having the Makefile in CWD, and calling:
   518   make menuconfig
   519 
   520 Having ct-ng as it is avoids copying the Makefile everywhere, and acts as a
   521 traditional command.
   522 
   523 ct-ng loads sub- Makefiles from the library directory $(CT_LIB_DIR), as set up
   524 at configuration time with ./configure.
   525 
   526 ct-ng also searches for config files, sub-tools, samples, scripts and patches in
   527 that library directory.
   528 
   529 Because of a stupid make behavior/bug I was unable to track down, implicit make
   530 rules are disabled: installing with --local would triger those rules, and mconf
   531 was unbuildable.
   532 
   533 Kconfig parser |
   534 ---------------+
   535 
   536 The kconfig language is a hacked version, vampirised from the Linux kernel
   537 (http://www.kernel.org/), and (heavily) adapted to my needs.
   538 
   539 The list of the most notable changes (at least the ones I remember) follows:
   540 - the CONFIG_ prefix has been replaced with CT_
   541 - a leading | in prompts is skipped, and subsequent leading spaces are not
   542   trimmed
   543 - otherwise leading spaces are silently trimmed
   544 
   545 The kconfig parsers (conf and mconf) are not installed pre-built, but as
   546 source files. Thus you can have the directory where crosstool-NG is installed,
   547 exported (via NFS or whatever) and have clients with different architectures
   548 use the same crosstool-NG installation, and most notably, the same set of
   549 patches.
   550 
   551 Architecture-specific |
   552 ----------------------+
   553 
   554 Note: this chapter is not really well written, and might thus be a little bit
   555 complex to understand. To get a better grasp of what an architecture is, the
   556 reader is kindly encouraged to look at the "arch/" sub-directory, and to the
   557 existing architectures to see how things are laid out.
   558 
   559 An architecture is defined by:
   560 
   561  - a human-readable name, in lower case letters, with numbers as appropriate.
   562    The underscore is allowed; space and special characters are not.
   563      Eg.: arm, x86_64
   564  - a file in "config/arch/", named after the architecture's name, and suffixed
   565    with ".in".
   566      Eg.: config/arch/arm.in
   567  - a file in "scripts/build/arch/", named after the architecture's name, and
   568    suffixed with ".sh".
   569      Eg.: scripts/build/arch/arm.sh
   570 
   571 The architecture's ".in" file API:
   572  > the config option "ARCH_%arch%" (where %arch% is to be replaced with the
   573    actual architecture name).
   574    That config option must have *neither* a type, *nor* a prompt! Also, it can
   575    *not* depend on any other config option (EXPERIMENTAL is managed as above).
   576      Eg.:
   577        config ARCH_arm
   578    + mandatory:
   579        defines a (terse) help entry for this architecture:
   580        Eg.:
   581          config ARCH_arm
   582            help
   583              The ARM architecture.
   584    + optional:
   585        selects adequate associated config options.
   586        Note: 64-bit architectures *shall* select ARCH_64
   587        Eg.:
   588          config ARCH_arm
   589            select ARCH_SUPPORTS_BOTH_ENDIAN
   590            select ARCH_DEFAULT_LE
   591            help
   592              The ARM architecture.
   593        Eg.:
   594          config ARCH_x86_64
   595             select ARCH_64
   596             help
   597               The x86_64 architecture.
   598 
   599  > other target-specific options, at your discretion. Note however that to
   600    avoid name-clashing, such options shall be prefixed with "ARCH_%arch%",
   601    where %arch% is again replaced by the actual architecture name.
   602    (Note: due to historical reasons, and lack of time to clean up the code,
   603     I may have left some config options that do not completely conform to
   604     this, as the architecture name was written all upper case. However, the
   605     prefix is unique among architectures, and does not cause harm).
   606 
   607 The architecture's ".sh" file API:
   608  > the function "CT_DoArchTupleValues"
   609    + parameters: none
   610    + environment:
   611      - all variables from the ".config" file,
   612      - the two variables "target_endian_eb" and "target_endian_el" which are
   613        the endianness suffixes
   614    + return value: 0 upon success, !0 upon failure
   615    + provides:
   616      - mandatory
   617      - the environment variable CT_TARGET_ARCH
   618      - contains:
   619        the architecture part of the target tuple.
   620        Eg.: "armeb" for big endian ARM
   621             "i386" for an i386
   622    + provides:
   623      - optional
   624      - the environment variable CT_TARGET_SYS
   625      - contains:
   626        the sytem part of the target tuple.
   627        Eg.: "gnu" for glibc on most architectures
   628             "gnueabi" for glibc on an ARM EABI
   629      - defaults to:
   630        - for glibc-based toolchain: "gnu"
   631        - for uClibc-based toolchain: "uclibc"
   632    + provides:
   633      - optional
   634      - the environment variable CT_KERNEL_ARCH
   635      - contains:
   636        the architecture name as understandable by the Linux kernel build
   637        system.
   638        Eg.: "arm" for an ARM
   639             "powerpc" for a PowerPC
   640             "i386" for an x86
   641      - defaults to:
   642        ${CT_ARCH}
   643    + provides:
   644      - optional
   645      - the environment variables to configure the cross-gcc (defaults)
   646        - CT_ARCH_WITH_ARCH    : the gcc ./configure switch to select architecture level         ( "--with-arch=${CT_ARCH_ARCH}"   )
   647        - CT_ARCH_WITH_ABI     : the gcc ./configure switch to select ABI level                  ( "--with-abi=${CT_ARCH_ABI}"     )
   648        - CT_ARCH_WITH_CPU     : the gcc ./configure switch to select CPU instruction set        ( "--with-cpu=${CT_ARCH_CPU}"     )
   649        - CT_ARCH_WITH_TUNE    : the gcc ./configure switch to select scheduling                 ( "--with-tune=${CT_ARCH_TUNE}"   )
   650        - CT_ARCH_WITH_FPU     : the gcc ./configure switch to select FPU type                   ( "--with-fpu=${CT_ARCH_FPU}"     )
   651        - CT_ARCH_WITH_FLOAT   : the gcc ./configure switch to select floating point arithmetics ( "--with-float=soft" or /empty/  )
   652    + provides:
   653      - optional
   654      - the environment variables to pass to the cross-gcc to build target binaries (defaults)
   655        - CT_ARCH_ARCH_CFLAG   : the gcc switch to select architecture level                     ( "-march=${CT_ARCH_ARCH}"            )
   656        - CT_ARCH_ABI_CFLAG    : the gcc switch to select ABI level                              ( "-mabi=${CT_ARCH_ABI}"              )
   657        - CT_ARCH_CPU_CFLAG    : the gcc switch to select CPU instruction set                    ( "-mcpu=${CT_ARCH_CPU}"              )
   658        - CT_ARCH_TUNE_CFLAG   : the gcc switch to select scheduling                             ( "-mtune=${CT_ARCH_TUNE}"            )
   659        - CT_ARCH_FPU_CFLAG    : the gcc switch to select FPU type                               ( "-mfpu=${CT_ARCH_FPU}"              )
   660        - CT_ARCH_FLOAT_CFLAG  : the gcc switch to choose floating point arithmetics             ( "-msoft-float" or /empty/           )
   661        - CT_ARCH_ENDIAN_CFLAG : the gcc switch to choose big or little endian                   ( "-mbig-endian" or "-mlittle-endian" )
   662      - default to:
   663        see above.
   664    + provides:
   665      - optional
   666      - the environement variables to configure the core and final compiler, specific to this architecture:
   667        - CT_ARCH_CC_CORE_EXTRA_CONFIG   : additional, architecture specific core gcc ./configure flags
   668        - CT_ARCH_CC_EXTRA_CONFIG        : additional, architecture specific final gcc ./configure flags
   669      - default to:
   670        - all empty
   671    + provides:
   672      - optional
   673      - the architecture-specific CFLAGS and LDFLAGS:
   674        - CT_ARCH_TARGET_CLFAGS
   675        - CT_ARCH_TARGET_LDFLAGS
   676      - default to:
   677        - all empty
   678 
   679 You can have a look at "config/arch/arm.in" and "scripts/build/arch/arm.sh" for
   680 a quite complete example of what an actual architecture description looks like.
   681 
   682 Kernel specific |
   683 ----------------+
   684 
   685 A kernel is defined by:
   686 
   687  - a human-readable name, in lower case letters, with numbers as appropriate.
   688    The underscore is allowed; space and special characters are not (although
   689    they are internally replaced with underscores.
   690      Eg.: linux, bare-metal
   691  - a file in "config/kernel/", named after the kernel name, and suffixed with
   692    ".in".
   693      Eg.: config/kernel/linux.in, config/kernel/bare-metal.in
   694  - a file in "scripts/build/kernel/", named after the kernel name, and suffixed
   695    with ".sh".
   696      Eg.: scripts/build/kernel/linux.sh, scripts/build/kernel/bare-metal.sh
   697 
   698 The kernel's ".in" file must contain:
   699  > an optional lines containing exactly "# EXPERIMENTAL", starting on the
   700    first column, and without any following space or other character.
   701    If this line is present, then this kernel is considered EXPERIMENTAL,
   702    and correct dependency on EXPERIMENTAL will be set.
   703 
   704  > the config option "KERNEL_%kernel_name%" (where %kernel_name% is to be
   705    replaced with the actual kernel name, with all special characters and
   706    spaces replaced by underscores).
   707    That config option must have *neither* a type, *nor* a prompt! Also, it can
   708    *not* depends on EXPERIMENTAL.
   709      Eg.: KERNEL_linux, KERNEL_bare_metal
   710    + mandatory:
   711        defines a (terse) help entry for this kernel.
   712        Eg.:
   713          config KERNEL_bare_metal
   714            help
   715              Build a compiler for use without any kernel.
   716    + optional:
   717        selects adequate associated config options.
   718        Eg.:
   719          config KERNEL_bare_metal
   720            select BARE_METAL
   721            help
   722              Build a compiler for use without any kernel.
   723 
   724  > other kernel specific options, at your discretion. Note however that, to
   725    avoid name-clashing, such options should be prefixed with
   726    "KERNEL_%kernel_name%", where %kernel_name% is again tp be replaced with
   727    the actual kernel name.
   728    (Note: due to historical reasons, and lack of time to clean up the code,
   729     I may have left some config options that do not completely conform to
   730     this, as the kernel name was written all upper case. However, the prefix
   731     is unique among kernels, and does not cause harm).
   732 
   733 The kernel's ".sh" file API:
   734  > is a bash script fragment
   735 
   736  > defines the function CT_DoKernelTupleValues
   737    + see the architecture's CT_DoArchTupleValues, except for:
   738    + set the environment variable CT_TARGET_KERNEL, the kernel part of the
   739      target tuple
   740    + return value: ignored
   741 
   742  > defines the function "do_print_filename":
   743    + parameters: none
   744    + environment:
   745       - all variables from the ".config" file,
   746    + return value: ignored
   747    + behavior: output the kernel's tarball filename, with adequate suffix,
   748      on stdout.
   749        Eg.: linux-2.6.26.5.tar.bz2
   750 
   751  > defines the function "do_kernel_get":
   752    + parameters: none
   753    + environment:
   754       - all variables from the ".config" file.
   755    + return value: 0 for success, !0 for failure.
   756    + behavior: download the kernel's sources, and store the tarball into
   757      "${CT_TARBALLS_DIR}". To this end, a functions is available, that
   758      abstracts downloading tarballs:
   759      - CT_DoGet <tarball_base_name> <URL1 [URL...]>
   760        Eg.: CT_DoGet linux-2.6.26.5 ftp://ftp.kernel.org/pub/linux/kernel/v2.6
   761      Note: retrieving sources from svn, cvs, git and the likes is not supported
   762      by CT_DoGet. You'll have to do this by hand, as it is done for eglibc in
   763      "scripts/build/libc/eglibc.sh"
   764 
   765  > defines the function "do_kernel_extract":
   766    + parameters: none
   767    + environment:
   768       - all variables from the ".config" file,
   769    + return value: 0 for success, !0 for failure.
   770    + behavior: extract the kernel's tarball into "${CT_SRC_DIR}", and apply
   771      required patches. To this end, a function is available, that abstracts
   772      extracting tarballs:
   773      - CT_ExtractAndPatch <tarball_base_name>
   774        Eg.: CT_ExtractAndPatch linux-2.6.26.5
   775 
   776  > defines the function "do_kernel_headers":
   777    + parameters: none
   778    + environment:
   779       - all variables from the ".config" file,
   780    + return value: 0 for success, !0 for failure.
   781    + behavior: install the kernel headers (if any) in "${CT_SYSROOT_DIR}/usr/include"
   782 
   783  > defines any kernel-specific helper functions
   784    These functions, if any, must be prefixed with "do_kernel_%CT_KERNEL%_",
   785    where '%CT_KERNEL%' is to be replaced with the actual kernel name, to avoid
   786    any name-clashing.
   787 
   788 You can have a look at "config/kernel/linux.in" and "scripts/build/kernel/linux.sh"
   789 as an example of what a complex kernel description looks like.
   790 
   791 Adding a new version of a component |
   792 ------------------------------------+
   793 
   794 When a new component, such as the Linux kernel, gcc or any other is released,
   795 adding the new version to crosstool-NG is quite easy. There is a script that
   796 will do all that for you:
   797   tools/addToolVersion.sh
   798 
   799 Run it with no option to get some help.
   800 
   801 Build scripts |
   802 --------------+
   803 
   804 To Be Written later...