docs/known-issues.txt
author "Yann E. MORIN" <yann.morin.1998@anciens.enib.fr>
Fri Aug 08 07:07:16 2008 +0000 (2008-08-08)
changeset 771 e1287c6748c9
parent 769 722d8cc91946
child 885 4653d6002d37
permissions -rw-r--r--
Update the knwon issues with the broekn build of seemingly-native toolchains.

/trunk/docs/known-issues.txt | 59 59 0 0 ++++++++++++++++++++++++++++++++++++++++++++++++++
1 file changed, 59 insertions(+)
     1 This files lists the known issues encountered while developping crosstool-NG,
     2 but that could not be addressed before the release.
     3 
     4 The file has one section for each known issue, each section containing four
     5 sub-sections: Symptoms, Explanations, Fix, and Workaround.
     6 
     7 Each section is separated from the others with a lines of at least 4 dashes.
     8 
     9 The following dummy section explains it all.
    10 
    11     --------------------------------
    12     Symptoms:
    13       A one-liner of what you would observe.
    14 
    15     Explanations:
    16       An as much as possible in-depth explanations of the context, why it
    17       happens, what has been investigated so far, and possible orientations
    18       as how to try to solve this (eg. URLs, code snippets...).
    19 
    20     Fix:
    21       What you have to do to fix it, if at all possible.
    22       The fact that there is a fix, and yet this is a known issue means that
    23       time to incorporate the fix in crosstool-NG was missing, or planned for
    24       a future release.
    25 
    26     Workaround:
    27       What you can do to fix it *temporarily*, if at all possible.
    28       A workaround is not a real fix, as it can break other parts of
    29       crosstool-NG, but at least makes you going in your particular case.
    30 
    31 So now, on for the real issues...
    32 
    33 --------------------------------
    34 Symptoms:
    35   Seemingly native toolchains do not build.
    36 
    37 Explanations:
    38   Seemingly native toolchains are toolchains that target the same architecture
    39   as the one it is built on, and on which it will run, but the machine tuple
    40   may be different (eg i686 vs. i386, or x86_64-unknown-linux-gnu vs.
    41   x86_64-pc-linux-gnu).
    42 
    43   This seems to happen when building glibc-2.7 based toolchains only, for
    44   x86 and for x86_64.
    45 
    46   Only the system part of the tuple (here, linux-gnu) needs to be the same to
    47   trigger the bug.
    48 
    49   If you really cross-compile (eg x86 -> x86_64, or the other way around),
    50   the toolchain builds successfully.
    51 
    52 Fix:
    53   None known.
    54 
    55 Workaround:
    56   If this happens for you, stick with glibc-2.6.1 for now.
    57   Or investigate! :-)
    58 
    59 --------------------------------