docs/overview.txt
author "Yann E. MORIN" <yann.morin.1998@anciens.enib.fr>
Mon Oct 12 19:25:41 2009 +0200 (2009-10-12)
changeset 1580 2b43f4952b53
parent 1576 906b7509835e
child 1581 f8143840971d
permissions -rw-r--r--
docs: fix chapter spacing
     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   Preparing for packaging
    18   Shell completion
    19   Contributed code
    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   Note on // jobs
    28   Tools wrapper
    29 Using the toolchain
    30   The 'populate' script
    31 Toolchain types
    32   Seemingly-native toolchains
    33 Contributing
    34   Sending a bug report
    35   Sending patches
    36 Internals
    37   Makefile front-end
    38   Kconfig parser
    39   Architecture-specific
    40   Adding a new version of a component
    41   Build scripts
    42 
    43 
    44 ________________
    45                /
    46 Introduction  /
    47 _____________/
    48 
    49 crosstool-NG aims at building toolchains. Toolchains are an essential component
    50 in a software development project. It will compile, assemble and link the code
    51 that is being developed. Some pieces of the toolchain will eventually end up
    52 in the resulting binary/ies: static libraries are but an example.
    53 
    54 So, a toolchain is a very sensitive piece of software, as any bug in one of the
    55 components, or a poorly configured component, can lead to execution problems,
    56 ranging from poor performance, to applications ending unexpectedly, to
    57 mis-behaving software (which more than often is hard to detect), to hardware
    58 damage, or even to human risks (which is more than regrettable).
    59 
    60 Toolchains are made of different piece of software, each being quite complex
    61 and requiring specially crafted options to build and work seamlessly. This
    62 is usually not that easy, even in the not-so-trivial case of native toolchains.
    63 The work reaches a higher degree of complexity when it comes to cross-
    64 compilation, where it can become quite a nightmare...
    65 
    66 Some cross-toolchains exist on the internet, and can be used for general
    67 development, but they have a number of limitations:
    68   - they can be general purpose, in that they are configured for the majority:
    69     no optimisation for your specific target,
    70   - they can be prepared for a specific target and thus are not easy to use,
    71     nor optimised for, or even supporting your target,
    72   - they often are using aging components (compiler, C library, etc...) not
    73     supporting special features of your shiny new processor;
    74 On the other side, these toolchain offer some advantages:
    75   - they are ready to use and quite easy to install and setup,
    76   - they are proven if used by a wide community.
    77 
    78 But once you want to get all the juice out of your specific hardware, you will
    79 want to build your own toolchain. This is where crosstool-NG comes into play.
    80 
    81 There are also a number of tools that build toolchains for specific needs,
    82 which are not really scalable. Examples are:
    83   - buildroot (buildroot.uclibc.org) whose main purpose is to build root file
    84     systems, hence the name. But once you have your toolchain with buildroot,
    85     part of it is installed in the root-to-be, so if you want to build a whole
    86     new root, you either have to save the existing one as a template and
    87     restore it later, or restart again from scratch. This is not convenient,
    88   - ptxdist (www.pengutronix.de/software/ptxdist), whose purpose is very
    89     similar to buildroot,
    90   - other projects (openembedded.org for example), which are again used to
    91     build root file systems.
    92 
    93 crosstool-NG is really targeted at building toolchains, and only toolchains.
    94 It is then up to you to use it the way you want.
    95 
    96 
    97 ___________
    98           /
    99 History  /
   100 ________/
   101 
   102 crosstool was first 'conceived' by Dan Kegel, who offered it to the community
   103 as a set of scripts, a repository of patches, and some pre-configured, general
   104 purpose setup files to be used to configure crosstool. This is available at
   105 http://www.kegel.com/crosstool, and the subversion repository is hosted on
   106 google at http://code.google.com/p/crosstool/.
   107 
   108 I once managed to add support for uClibc-based toolchains, but it did not make
   109 into mainline, mostly because I didn't have time to port the patch forward to
   110 the new versions, due in part to the big effort it was taking.
   111 
   112 So I decided to clean up crosstool in the state it was, re-order the things
   113 in place, add appropriate support for what I needed, that is uClibc support
   114 and a menu-driven configuration, named the new implementation crosstool-NG,
   115 (standing for crosstool Next Generation, as many other comunity projects do,
   116 and as a wink at the TV series "Star Trek: The Next Generation" ;-) ) and
   117 made it available to the community, in case it was of interest to any one.
   118 
   119 
   120 ___________________________
   121                           /
   122 Installing crosstool-NG  /
   123 ________________________/
   124 
   125 There are two ways you can use crosstool-NG:
   126  - build and install it, then get rid of the sources like you'd do for most
   127    programs,
   128  - or only build it and run from the source directory.
   129 
   130 The former should be used if you got crosstool-NG from a packaged tarball, see
   131 "Install method", below, while the latter is most useful for developpers that
   132 use a clone of the repository, and want to submit patches, see "The Hacker's
   133 way", below.
   134 
   135 Install method |
   136 ---------------+
   137 
   138 If you go for the install, then you just follow the classical, but yet easy
   139 ./configure way:
   140   ./configure --prefix=/some/place
   141   make
   142   make install
   143   export PATH="${PATH}:/some/place/bin"
   144 
   145 You can then get rid of crosstool-NG source. Next create a directory to serve
   146 as a working place, cd in there and run:
   147   ct-ng help
   148 
   149 See below for complete usage.
   150 
   151 The Hacker's way |
   152 -----------------+
   153 
   154 If you go the hacker's way, then the usage is a bit different, although very
   155 simple:
   156   ./configure --local
   157   make
   158 
   159 Now, *do not* remove crosstool-NG sources. They are needed to run crosstool-NG!
   160 Stay in the directory holding the sources, and run:
   161   ./ct-ng help
   162 
   163 See below for complete usage.
   164 
   165 Now, provided you used a clone of the repository, you can send me your changes.
   166 See the section titled CONTRIBUTING, below, for how to submit changees.
   167 
   168 Preparing for packaging |
   169 ------------------------+
   170 
   171 If you plan on packaging crosstool-NG, you surely don't want to install it
   172 in your root file system. The install procedure of crosstool-NG honors the
   173 DESTDIR variable:
   174 
   175   ./configure --prefix=/usr
   176   make
   177   make DESTDIR=/packaging/place install
   178 
   179 Shell completion |
   180 -----------------+
   181 
   182 crosstool-NG comes with a shell script fragment that defines bash-compatible
   183 completion. That shell fragment is currently not installed automatically, but
   184 this is planned.
   185 
   186 To install the shell script fragment, you have two options:
   187  - install system-wide, most probably by copying ct-ng.comp into
   188    /etc/bash_completion.d/
   189  - install for a single user, by copying ct-ng.comp into ${HOME}/ and
   190    sourcing this file from your ${HOME}/.bashrc
   191 
   192 Contributed code |
   193 -----------------+
   194 
   195 Some people contibuted code that couldn't get merged for various reasons. This
   196 code is available as lzma-compressed patches, in the contrib/ sub-directory.
   197 These patches are to be applied to the source of crosstool-NG, prior to
   198 installing, using something like the following:
   199   lzcat contrib/foobar.patch.lzma |patch -p1
   200 
   201 There is no guarantee that a particuliar contribution applies to the current
   202 version of crosstool-ng, or that it will work at all. Use contributions at
   203 your own risk.
   204 
   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. Those versions (or features) are so
   280   marked because maintaining support for those in crosstool-NG would be too
   281   costly, time-wise, and time is dear.
   282 
   283 CT_EXPERIMENTAL:
   284   Show experimental versions or tools. Again, you might not want to base your
   285   toolchain on too recent tools (eg. gcc) for production. But if you need a
   286   feature present only in a recent version, or a new tool, you can find them
   287   hidden behind CT_EXPERIMENTAL. Those versions (or features) did not (yet)
   288   receive thorough testing in crosstool-NG, and/or are not mature enough to
   289   be blindly trusted.
   290 
   291 Re-building an existing toolchain |
   292 ----------------------------------+
   293 
   294 If you have an existing toolchain, you can re-use the options used to build it
   295 to create a new toolchain. That needs a very little bit of effort on your side
   296 but is quite easy. The options to build a toolchain are saved with the
   297 toolchain, and you can retrieve this configuration by running:
   298   ${CT_TARGET}-config
   299 
   300 This will dump the configuration to stdout, so to rebuild a toolchain with this
   301 configuration, the following is all you need to do:
   302   ${CT_TARGET}-config >.config
   303   ct-ng oldconfig
   304 
   305 Then, you can review and change the configuration by running:
   306   ct-ng menuconfig
   307 
   308 
   309 ________________________
   310                        /
   311 Running crosstool-NG  /
   312 _____________________/
   313 
   314 To build the toolchain, simply type:
   315   ct-ng build
   316 
   317 This will use the above configuration to retrieve, extract and patch the
   318 components, build, install and eventually test your newly built toolchain.
   319 
   320 You are then free to add the toolchain /bin directory in your PATH to use
   321 it at will.
   322 
   323 In any case, you can get some terse help. Just type:
   324   ct-ng help
   325 or:
   326   man 1 ct-ng
   327 
   328 Stopping and restarting a build |
   329 --------------------------------+
   330 
   331 If you want to stop the build after a step you are debugging, you can pass the
   332 variable STOP to make:
   333   ct-ng STOP=some_step
   334 
   335 Conversely, if you want to restart a build at a specific step you are
   336 debugging, you can pass the RESTART variable to make:
   337   ct-ng RESTART=some_step
   338 
   339 Alternatively, you can call make with the name of a step to just do that step:
   340   ct-ng libc_headers
   341 is equivalent to:
   342   ct-ng RESTART=libc_headers STOP=libc_headers
   343 
   344 The shortcuts +step_name and step_name+ allow to respectively stop or restart
   345 at that step. Thus:
   346   ct-ng +libc_headers        and:    ct-ng libc_headers+
   347 are equivalent to:
   348   ct-ng STOP=libc_headers    and:    ct-ng RESTART=libc_headers
   349 
   350 To obtain the list of acceptable steps, please call:
   351   ct-ng list-steps
   352 
   353 Note that in order to restart a build, you'll have to say 'Y' to the config
   354 option CT_DEBUG_CT_SAVE_STEPS, and that the previous build effectively went
   355 that far.
   356 
   357 Building all toolchains at once |
   358 --------------------------------+
   359 
   360 You can build all samples; simply call:
   361   ct-ng build-all
   362 
   363 Overriding the number of // jobs |
   364 ---------------------------------+
   365 
   366 If you want to override the number of jobs to run in // (the -j option to
   367 make), you can either re-enter the menuconfig, or simply add it on the command
   368 line, as such:
   369   ct-ng build.4
   370 
   371 which tells crosstool-NG to override the number of // jobs to 4.
   372 
   373 You can see the actions that support overriding the number of // jobs in
   374 the help menu. Those are the ones with [.#] after them (eg. build[.#] or
   375 build-all[.#], and so on...).
   376 
   377 Note on // jobs |
   378 ----------------+
   379 
   380 The crosstool-NG script 'ct-ng' is a Makefile-script. It does *not* execute
   381 in parallel (there is not much to gain). When speaking of // jobs, we are
   382 refering to the number of // jobs when making the *components*. That is, we
   383 speak of the number of // jobs used to build gcc, glibc, and so on...
   384 
   385 Tools wrapper |
   386 --------------+
   387 
   388 Starting with gcc-4.3 come two new dependencies: GMP and MPFR. With gcc-4.4,
   389 come three new ones: GMP, PPL and CLooG/ppl. These are libraries that enable
   390 advanced features to gcc. Additionally, some of the libraries can be used by
   391 binutils and gdb. Unfortunately, not all systems on which crosstool-NG runs
   392 have all of those libraries. And for those that do, the versions of those
   393 libraries may be older than the version required by gcc.
   394 
   395 This is why crosstool-NG builds its own set of libraries as part of the
   396 toolchain.
   397 
   398 The libraries are built as shared libraries, because building them as static
   399 libraries has some short-comings. This poses no problem at build time, as
   400 crosstool-NG correctly points gcc (and binutils and gdb) to the correct
   401 place where our own version of the libraries are installed. But it poses
   402 a problem when gcc et al. are run: the place where the libraries are is most
   403 probably not known to the host dynamic linker. Still worse, if the host system
   404 has its own versions, then ld.so would load the wrong library!
   405 
   406 So we have to force the dynamic linker to load the correct version. We do this
   407 by using the LD_LIBRARY_PATH variable, that informs the dynamic linker where
   408 to look for shared libraries prior to searching its standard places. But we
   409 can't impose that burden on all the system (because it'd be a nightmare to
   410 configure, and because two toolchains on the same system may use different
   411 versions of the libraries); so we have to do it on a per-toolchain basis.
   412 
   413 So we rename all binaries of the toolchain (by adding a dot '.' as their first
   414 character), and add a small program, the so-called "tools wrapper", that
   415 correctly sets LD_LIBRARY_PATH prior to running the real tool.
   416 
   417 First, the wrapper was written as a POSIX-compliant shell script. That shell
   418 script is very simple, if not trivial, and works great. The only drawback is
   419 that it does not work on host systems that lack a shell, for example the
   420 MingW32 environment. To solve the issue, the wrapper has been re-written in C,
   421 and compiled at build time. This C wrapper is much more complex than the shell
   422 script, and although it sems to be working, it's been only lightly tested.
   423 Some of the expected short-comings with this C wrapper are;
   424  - multi-byte file names may not be handled correctly
   425  - it's really big for what it does
   426 
   427 So, the default wrapper installed with your toolchain is the shell script.
   428 If you know that your system is missing a shell, then you shall use the C
   429 wrapper (and report back whether it works, or does not work, for you).
   430 
   431 
   432 _______________________
   433                       /
   434 Using the toolchain  /
   435 ____________________/
   436 
   437 Using the toolchain is as simple as adding the toolchain's bin directory in
   438 your PATH, such as:
   439   export PATH="${PATH}:/your/toolchain/path/bin"
   440 
   441 and then using the target tuple to tell the build systems to use your
   442 toolchain:
   443   ./configure --target=your-target-tuple
   444 or
   445   make CC=your-target-tuple-gcc
   446 or
   447   make CROSS_COMPILE=your-target-tuple-
   448 and so on...
   449 
   450 It is strongly advised not to use the toolchain sys-root directory as an
   451 install directory for your programs/packages. If you do so, you will not be
   452 able to use your toolchain for another project. It is even strongly advised
   453 that your toolchain is chmod-ed to read-only once successfully build, so that
   454 you don't go polluting your toolchain with your programs/packages' files.
   455 
   456 Thus, when you build a program/package, install it in a separate directory,
   457 eg. /your/root. This directory is the /image/ of what would be in the root file
   458 system of your target, and will contain all that your programs/packages have
   459 installed.
   460 
   461 The 'populate' script |
   462 ----------------------+
   463 
   464 When your root directory is ready, it is still missing some important bits: the
   465 toolchain's libraries. To populate your root directory with those libs, just
   466 run:
   467   your-target-tuple-populate -s /your/root -d /your/root-populated
   468 
   469 This will copy /your/root into /your/root-populated, and put the needed and only
   470 the needed libraries there. Thus you don't polute /your/root with any cruft that
   471 would no longer be needed should you have to remove stuff. /your/root always
   472 contains only those things you install in it.
   473 
   474 You can then use /your/root-populated to build up your file system image, a
   475 tarball, or to NFS-mount it from your target, or whatever you need.
   476 
   477 The populate script accepts the following options:
   478 
   479  -s src_dir
   480     Use 'src_dir' as the un-populated root directory.
   481 
   482  -d dst_dir
   483     Put the populated root directory in 'dst_dir'.
   484 
   485  -l lib1 [...]
   486     Always add specified libraries.
   487 
   488  -L file
   489     Always add libraries listed in 'file'.
   490 
   491  -f
   492     Remove 'dst_dir' if it previously existed; continue even if any library
   493     specified with -l or -L is missing.
   494 
   495  -v
   496     Be verbose, and tell what's going on (you can see exactly where libs are
   497     coming from).
   498 
   499  -h
   500     Print the help.
   501 
   502 See 'your-target-tuple-populate -h' for more information on the options.
   503 
   504 Here is how populate works:
   505 
   506   1) performs some sanity checks:
   507      - src_dir and dst_dir are specified
   508      - src_dir exists
   509      - unless forced, dst_dir does not exist
   510      - src_dir != dst_dir
   511 
   512   2) copy src_dir to dst_dir
   513 
   514   3) add forced libraries to dst_dir
   515      - build the list from -l and -L options
   516      - get forced libraries from the sysroot (see below for heuristics)
   517        - abort on the first missing library, unless -f is specified
   518 
   519   4) add all missing libraries to dst_dir
   520      - scan dst_dir for every ELF files that are 'executable' or
   521        'shared object'
   522      - list the "NEEDED Shared library" fields
   523        - check if the library is already in dst_dir/lib or dst_dir/usr/lib
   524        - if not, get the library from the sysroot
   525          - if it's in sysroot/lib, copy it to dst_dir/lib
   526          - if it's in sysroot/usr/lib, copy it to dst_dir/usr/lib
   527          - in both cases, use the SONAME of the library to create the file
   528            in dst_dir
   529          - if it was not found in the sysroot, this is an error.
   530 
   531 
   532 ___________________
   533                   /
   534 Toolchain types  /
   535 ________________/
   536 
   537 There are four kinds of toolchains you could encounter.
   538 
   539 First off, you must understand the following: when it comes to compilers there
   540 are up to four machines involved:
   541   1) the machine configuring the toolchain components: the config machine
   542   2) the machine building the toolchain components:    the build machine
   543   3) the machine running the toolchain:                the host machine
   544   4) the machine the toolchain is generating code for: the target machine
   545 
   546 We can most of the time assume that the config machine and the build machine
   547 are the same. Most of the time, this will be true. The only time it isn't
   548 is if you're using distributed compilation (such as distcc). Let's forget
   549 this for the sake of simplicity.
   550 
   551 So we're left with three machines:
   552  - build
   553  - host
   554  - target
   555 
   556 Any toolchain will involve those three machines. You can be as pretty sure of
   557 this as "2 and 2 are 4". Here is how they come into play:
   558 
   559 1) build == host == target
   560     This is a plain native toolchain, targetting the exact same machine as the
   561     one it is built on, and running again on this exact same machine. You have
   562     to build such a toolchain when you want to use an updated component, such
   563     as a newer gcc for example.
   564     crosstool-NG calls it "native".
   565 
   566 2) build == host != target
   567     This is a classic cross-toolchain, which is expected to be run on the same
   568     machine it is compiled on, and generate code to run on a second machine,
   569     the target.
   570     crosstool-NG calls it "cross".
   571 
   572 3) build != host == target
   573     Such a toolchain is also a native toolchain, as it targets the same machine
   574     as it runs on. But it is build on another machine. You want such a
   575     toolchain when porting to a new architecture, or if the build machine is
   576     much faster than the host machine.
   577     crosstool-NG calls it "cross-native".
   578 
   579 4) build != host != target
   580     This one is called a canadian-toolchain (*), and is tricky. The three
   581     machines in play are different. You might want such a toolchain if you
   582     have a fast build machine, but the users will use it on another machine,
   583     and will produce code to run on a third machine.
   584     crosstool-NG calls it "canadian".
   585 
   586 crosstool-NG can build all these kinds of toolchains (or is aiming at it,
   587 anyway!)
   588 
   589 (*) The term Canadian Cross came about because at the time that these issues
   590     were all being hashed out, Canada had three national political parties.
   591     http://en.wikipedia.org/wiki/Cross_compiler
   592 
   593 Seemingly-native toolchains |
   594 ----------------------------+
   595 
   596 Seemingly-native toolchains are toolchains that target the same architecture
   597 as the one it is built on, and on which it will run, but the machine tuple
   598 may be different (eg i686 vs. i386, or x86_64-unknown-linux-gnu vs.
   599 x86_64-pc-linux-gnu). This also applies if the target architecture is of the
   600 same kind (eg. x86 vs. x86_64, or ppc vs. ppc64).
   601 
   602 Such toolchain is tricky to build, as the configure scripts may incorrectly
   603 assume that files (headers and libs) from the build (or host) machine can be
   604 used by the cross-compiler it is going to build. The problem seems to arise
   605 only with glibc (and eglibc?) starting with version 2.7.
   606 
   607 
   608 ________________
   609                /
   610 Contributing  /
   611 _____________/
   612 
   613 Sending a bug report |
   614 ---------------------+
   615 
   616 If you need to send a bug report, please send a mail with subject
   617 prefixed with "[CT_NG]" with to following destinations:
   618     TO: yann.morin.1998 (at) anciens.enib.fr
   619     CC: crossgcc (at) sourceware.org
   620 
   621 Sending patches |
   622 ----------------+
   623 
   624 If you want to enhance crosstool-NG, there's a to-do list in the TODO file.
   625 
   626 Patches should come with the appropriate SoB line. A SoB line is typically
   627 something like:
   628    Signed-off-by: John DOE <john.doe@somewhere.net>
   629 
   630 The SoB line is clearly described in Documentation/SubmittingPatches , section
   631 12, of your favourite Linux kernel source tree.
   632 
   633 Then you'll need to correctly configure Mercurial. There are two extensions
   634 that you may find usefull:
   635   - mq        : http://mercurial.selenic.com/wiki/MqExtension
   636   - patchbomb : http://mercurial.selenic.com/wiki/PatchbombExtension
   637 
   638 Commit messages should look like (without leading pipes):
   639  |component: short, one-line description
   640  |
   641  |optional longer description
   642  |on multiple lines if needed
   643 
   644 Here is an example commit message (see revision a53a5e1d61db):
   645  |comp-libs/cloog: fix building
   646  |
   647  |For CLooG/PPL 0.15.3, the directory name was simply cloog-ppl.
   648  |For any later versions, the directory name does have the version, such as
   649  |cloog-ppl-0.15.4.
   650 
   651 Here's a typical hacking session:
   652   hg clone http://ymorin.is-a-geek.org/hg/crosstool-ng crosstool-ng
   653   cd crosstool-ng
   654   hg qinit
   655   hg qnew -D -U -e my_first_patch
   656   *edit patch description*
   657   *hack* *hack* *check* *fails* *hack* *hack* *check* *works*
   658   hg qref -D -e
   659   *edit patch description, serving as commit message*
   660   hg qnew -D -U -e my_second_patch
   661   *edit patch description*
   662   *hack* *hack* *check* *fails* *hack* *hack* *check* *works*
   663   hg qref -D -e
   664   *edit patch description, serving as commit message*
   665   hg email --outgoing --intro   \
   666            --from '"Your Full NAME" <your.email (at) your.domain>'   \
   667            --to '"Yann E. MORIN" <yann.morin.1998 (at) anciens.enib.fr>'    \
   668            --cc 'crossgcc (at) sourceware.org'
   669   *edit introductory message*
   670   *wait for feedback*
   671   *re-send if no answer for a few days*
   672 
   673 Note: replace '(at)' above with a plain '@'.
   674 
   675 
   676 _____________
   677             /
   678 Internals  /
   679 __________/
   680 
   681 Internally, crosstool-NG is script-based. To ease usage, the frontend is
   682 Makefile-based.
   683 
   684 Makefile front-end |
   685 -------------------+
   686 
   687 The entry point to crosstool-NG is the Makefile script "ct-ng". Calling this
   688 script with an action will act exactly as if the Makefile was in the current
   689 working directory and make was called with the action as rule. Thus:
   690   ct-ng menuconfig
   691 
   692 is equivalent to having the Makefile in CWD, and calling:
   693   make menuconfig
   694 
   695 Having ct-ng as it is avoids copying the Makefile everywhere, and acts as a
   696 traditional command.
   697 
   698 ct-ng loads sub- Makefiles from the library directory $(CT_LIB_DIR), as set up
   699 at configuration time with ./configure.
   700 
   701 ct-ng also searches for config files, sub-tools, samples, scripts and patches in
   702 that library directory.
   703 
   704 Because of a stupid make behavior/bug I was unable to track down, implicit make
   705 rules are disabled: installing with --local would triger those rules, and mconf
   706 was unbuildable.
   707 
   708 Kconfig parser |
   709 ---------------+
   710 
   711 The kconfig language is a hacked version, vampirised from the Linux kernel
   712 (http://www.kernel.org/), and (heavily) adapted to my needs.
   713 
   714 The list of the most notable changes (at least the ones I remember) follows:
   715 - the CONFIG_ prefix has been replaced with CT_
   716 - a leading | in prompts is skipped, and subsequent leading spaces are not
   717   trimmed
   718 - otherwise leading spaces are silently trimmed
   719 
   720 The kconfig parsers (conf and mconf) are not installed pre-built, but as
   721 source files. Thus you can have the directory where crosstool-NG is installed,
   722 exported (via NFS or whatever) and have clients with different architectures
   723 use the same crosstool-NG installation, and most notably, the same set of
   724 patches.
   725 
   726 Architecture-specific |
   727 ----------------------+
   728 
   729 Note: this chapter is not really well written, and might thus be a little bit
   730 complex to understand. To get a better grasp of what an architecture is, the
   731 reader is kindly encouraged to look at the "arch/" sub-directory, and to the
   732 existing architectures to see how things are laid out.
   733 
   734 An architecture is defined by:
   735 
   736  - a human-readable name, in lower case letters, with numbers as appropriate.
   737    The underscore is allowed; space and special characters are not.
   738      Eg.: arm, x86_64
   739  - a file in "config/arch/", named after the architecture's name, and suffixed
   740    with ".in".
   741      Eg.: config/arch/arm.in
   742  - a file in "scripts/build/arch/", named after the architecture's name, and
   743    suffixed with ".sh".
   744      Eg.: scripts/build/arch/arm.sh
   745 
   746 The architecture's ".in" file API:
   747  > the config option "ARCH_%arch%" (where %arch% is to be replaced with the
   748    actual architecture name).
   749    That config option must have *neither* a type, *nor* a prompt! Also, it can
   750    *not* depend on any other config option (EXPERIMENTAL is managed as above).
   751      Eg.:
   752        config ARCH_arm
   753    + mandatory:
   754        defines a (terse) help entry for this architecture:
   755        Eg.:
   756          config ARCH_arm
   757            help
   758              The ARM architecture.
   759    + optional:
   760        selects adequate associated config options.
   761        Note: 64-bit architectures *shall* select ARCH_64
   762        Eg.:
   763          config ARCH_arm
   764            select ARCH_SUPPORTS_BOTH_ENDIAN
   765            select ARCH_DEFAULT_LE
   766            help
   767              The ARM architecture.
   768        Eg.:
   769          config ARCH_x86_64
   770             select ARCH_64
   771             help
   772               The x86_64 architecture.
   773 
   774  > other target-specific options, at your discretion. Note however that to
   775    avoid name-clashing, such options shall be prefixed with "ARCH_%arch%",
   776    where %arch% is again replaced by the actual architecture name.
   777    (Note: due to historical reasons, and lack of time to clean up the code,
   778     I may have left some config options that do not completely conform to
   779     this, as the architecture name was written all upper case. However, the
   780     prefix is unique among architectures, and does not cause harm).
   781 
   782 The architecture's ".sh" file API:
   783  > the function "CT_DoArchTupleValues"
   784    + parameters: none
   785    + environment:
   786      - all variables from the ".config" file,
   787      - the two variables "target_endian_eb" and "target_endian_el" which are
   788        the endianness suffixes
   789    + return value: 0 upon success, !0 upon failure
   790    + provides:
   791      - mandatory
   792      - the environment variable CT_TARGET_ARCH
   793      - contains:
   794        the architecture part of the target tuple.
   795        Eg.: "armeb" for big endian ARM
   796             "i386" for an i386
   797    + provides:
   798      - optional
   799      - the environment variable CT_TARGET_SYS
   800      - contains:
   801        the sytem part of the target tuple.
   802        Eg.: "gnu" for glibc on most architectures
   803             "gnueabi" for glibc on an ARM EABI
   804      - defaults to:
   805        - for glibc-based toolchain: "gnu"
   806        - for uClibc-based toolchain: "uclibc"
   807    + provides:
   808      - optional
   809      - the environment variable CT_KERNEL_ARCH
   810      - contains:
   811        the architecture name as understandable by the Linux kernel build
   812        system.
   813        Eg.: "arm" for an ARM
   814             "powerpc" for a PowerPC
   815             "i386" for an x86
   816      - defaults to:
   817        ${CT_ARCH}
   818    + provides:
   819      - optional
   820      - the environment variables to configure the cross-gcc (defaults)
   821        - CT_ARCH_WITH_ARCH    : the gcc ./configure switch to select architecture level         ( "--with-arch=${CT_ARCH_ARCH}"   )
   822        - CT_ARCH_WITH_ABI     : the gcc ./configure switch to select ABI level                  ( "--with-abi=${CT_ARCH_ABI}"     )
   823        - CT_ARCH_WITH_CPU     : the gcc ./configure switch to select CPU instruction set        ( "--with-cpu=${CT_ARCH_CPU}"     )
   824        - CT_ARCH_WITH_TUNE    : the gcc ./configure switch to select scheduling                 ( "--with-tune=${CT_ARCH_TUNE}"   )
   825        - CT_ARCH_WITH_FPU     : the gcc ./configure switch to select FPU type                   ( "--with-fpu=${CT_ARCH_FPU}"     )
   826        - CT_ARCH_WITH_FLOAT   : the gcc ./configure switch to select floating point arithmetics ( "--with-float=soft" or /empty/  )
   827    + provides:
   828      - optional
   829      - the environment variables to pass to the cross-gcc to build target binaries (defaults)
   830        - CT_ARCH_ARCH_CFLAG   : the gcc switch to select architecture level                     ( "-march=${CT_ARCH_ARCH}"            )
   831        - CT_ARCH_ABI_CFLAG    : the gcc switch to select ABI level                              ( "-mabi=${CT_ARCH_ABI}"              )
   832        - CT_ARCH_CPU_CFLAG    : the gcc switch to select CPU instruction set                    ( "-mcpu=${CT_ARCH_CPU}"              )
   833        - CT_ARCH_TUNE_CFLAG   : the gcc switch to select scheduling                             ( "-mtune=${CT_ARCH_TUNE}"            )
   834        - CT_ARCH_FPU_CFLAG    : the gcc switch to select FPU type                               ( "-mfpu=${CT_ARCH_FPU}"              )
   835        - CT_ARCH_FLOAT_CFLAG  : the gcc switch to choose floating point arithmetics             ( "-msoft-float" or /empty/           )
   836        - CT_ARCH_ENDIAN_CFLAG : the gcc switch to choose big or little endian                   ( "-mbig-endian" or "-mlittle-endian" )
   837      - default to:
   838        see above.
   839    + provides:
   840      - optional
   841      - the environement variables to configure the core and final compiler, specific to this architecture:
   842        - CT_ARCH_CC_CORE_EXTRA_CONFIG   : additional, architecture specific core gcc ./configure flags
   843        - CT_ARCH_CC_EXTRA_CONFIG        : additional, architecture specific final gcc ./configure flags
   844      - default to:
   845        - all empty
   846    + provides:
   847      - optional
   848      - the architecture-specific CFLAGS and LDFLAGS:
   849        - CT_ARCH_TARGET_CLFAGS
   850        - CT_ARCH_TARGET_LDFLAGS
   851      - default to:
   852        - all empty
   853 
   854 You can have a look at "config/arch/arm.in" and "scripts/build/arch/arm.sh" for
   855 a quite complete example of what an actual architecture description looks like.
   856 
   857 Kernel specific |
   858 ----------------+
   859 
   860 A kernel is defined by:
   861 
   862  - a human-readable name, in lower case letters, with numbers as appropriate.
   863    The underscore is allowed; space and special characters are not (although
   864    they are internally replaced with underscores.
   865      Eg.: linux, bare-metal
   866  - a file in "config/kernel/", named after the kernel name, and suffixed with
   867    ".in".
   868      Eg.: config/kernel/linux.in, config/kernel/bare-metal.in
   869  - a file in "scripts/build/kernel/", named after the kernel name, and suffixed
   870    with ".sh".
   871      Eg.: scripts/build/kernel/linux.sh, scripts/build/kernel/bare-metal.sh
   872 
   873 The kernel's ".in" file must contain:
   874  > an optional lines containing exactly "# EXPERIMENTAL", starting on the
   875    first column, and without any following space or other character.
   876    If this line is present, then this kernel is considered EXPERIMENTAL,
   877    and correct dependency on EXPERIMENTAL will be set.
   878 
   879  > the config option "KERNEL_%kernel_name%" (where %kernel_name% is to be
   880    replaced with the actual kernel name, with all special characters and
   881    spaces replaced by underscores).
   882    That config option must have *neither* a type, *nor* a prompt! Also, it can
   883    *not* depends on EXPERIMENTAL.
   884      Eg.: KERNEL_linux, KERNEL_bare_metal
   885    + mandatory:
   886        defines a (terse) help entry for this kernel.
   887        Eg.:
   888          config KERNEL_bare_metal
   889            help
   890              Build a compiler for use without any kernel.
   891    + optional:
   892        selects adequate associated config options.
   893        Eg.:
   894          config KERNEL_bare_metal
   895            select BARE_METAL
   896            help
   897              Build a compiler for use without any kernel.
   898 
   899  > other kernel specific options, at your discretion. Note however that, to
   900    avoid name-clashing, such options should be prefixed with
   901    "KERNEL_%kernel_name%", where %kernel_name% is again tp be replaced with
   902    the actual kernel name.
   903    (Note: due to historical reasons, and lack of time to clean up the code,
   904     I may have left some config options that do not completely conform to
   905     this, as the kernel name was written all upper case. However, the prefix
   906     is unique among kernels, and does not cause harm).
   907 
   908 The kernel's ".sh" file API:
   909  > is a bash script fragment
   910 
   911  > defines the function CT_DoKernelTupleValues
   912    + see the architecture's CT_DoArchTupleValues, except for:
   913    + set the environment variable CT_TARGET_KERNEL, the kernel part of the
   914      target tuple
   915    + return value: ignored
   916 
   917  > defines the function "do_kernel_get":
   918    + parameters: none
   919    + environment:
   920       - all variables from the ".config" file.
   921    + return value: 0 for success, !0 for failure.
   922    + behavior: download the kernel's sources, and store the tarball into
   923      "${CT_TARBALLS_DIR}". To this end, a functions is available, that
   924      abstracts downloading tarballs:
   925      - CT_DoGet <tarball_base_name> <URL1 [URL...]>
   926        Eg.: CT_DoGet linux-2.6.26.5 ftp://ftp.kernel.org/pub/linux/kernel/v2.6
   927      Note: retrieving sources from svn, cvs, git and the likes is not supported
   928      by CT_DoGet. You'll have to do this by hand, as it is done for eglibc in
   929      "scripts/build/libc/eglibc.sh"
   930 
   931  > defines the function "do_kernel_extract":
   932    + parameters: none
   933    + environment:
   934       - all variables from the ".config" file,
   935    + return value: 0 for success, !0 for failure.
   936    + behavior: extract the kernel's tarball into "${CT_SRC_DIR}", and apply
   937      required patches. To this end, a function is available, that abstracts
   938      extracting tarballs:
   939      - CT_ExtractAndPatch <tarball_base_name>
   940        Eg.: CT_ExtractAndPatch linux-2.6.26.5
   941 
   942  > defines the function "do_kernel_headers":
   943    + parameters: none
   944    + environment:
   945       - all variables from the ".config" file,
   946    + return value: 0 for success, !0 for failure.
   947    + behavior: install the kernel headers (if any) in "${CT_SYSROOT_DIR}/usr/include"
   948 
   949  > defines any kernel-specific helper functions
   950    These functions, if any, must be prefixed with "do_kernel_%CT_KERNEL%_",
   951    where '%CT_KERNEL%' is to be replaced with the actual kernel name, to avoid
   952    any name-clashing.
   953 
   954 You can have a look at "config/kernel/linux.in" and "scripts/build/kernel/linux.sh"
   955 as an example of what a complex kernel description looks like.
   956 
   957 Adding a new version of a component |
   958 ------------------------------------+
   959 
   960 When a new component, such as the Linux kernel, gcc or any other is released,
   961 adding the new version to crosstool-NG is quite easy. There is a script that
   962 will do all that for you:
   963   scripts/addToolVersion.sh
   964 
   965 Run it with no option to get some help.
   966 
   967 Build scripts |
   968 --------------+
   969 
   970 To Be Written later...