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