summaryrefslogtreecommitdiff
path: root/docs/known-issues.txt
diff options
context:
space:
mode:
authorYann E. MORIN" <yann.morin.1998@anciens.enib.fr>2008-08-08 07:07:16 (GMT)
committerYann E. MORIN" <yann.morin.1998@anciens.enib.fr>2008-08-08 07:07:16 (GMT)
commite5f035b5568aa0c3e912b7d0808973ee97b12756 (patch)
treee96a1752a3257474c9e0cefbe69505b98d206723 /docs/known-issues.txt
parentab682b5e47447539ca5e0cc3aebc6f565fcb0023 (diff)
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(+)
Diffstat (limited to 'docs/known-issues.txt')
-rw-r--r--docs/known-issues.txt59
1 files changed, 59 insertions, 0 deletions
diff --git a/docs/known-issues.txt b/docs/known-issues.txt
index e69de29..5228b10 100644
--- a/docs/known-issues.txt
+++ b/docs/known-issues.txt
@@ -0,0 +1,59 @@
+This files lists the known issues encountered while developping crosstool-NG,
+but that could not be addressed before the release.
+
+The file has one section for each known issue, each section containing four
+sub-sections: Symptoms, Explanations, Fix, and Workaround.
+
+Each section is separated from the others with a lines of at least 4 dashes.
+
+The following dummy section explains it all.
+
+ --------------------------------
+ Symptoms:
+ A one-liner of what you would observe.
+
+ Explanations:
+ An as much as possible in-depth explanations of the context, why it
+ happens, what has been investigated so far, and possible orientations
+ as how to try to solve this (eg. URLs, code snippets...).
+
+ Fix:
+ What you have to do to fix it, if at all possible.
+ The fact that there is a fix, and yet this is a known issue means that
+ time to incorporate the fix in crosstool-NG was missing, or planned for
+ a future release.
+
+ Workaround:
+ What you can do to fix it *temporarily*, if at all possible.
+ A workaround is not a real fix, as it can break other parts of
+ crosstool-NG, but at least makes you going in your particular case.
+
+So now, on for the real issues...
+
+--------------------------------
+Symptoms:
+ Seemingly native toolchains do not build.
+
+Explanations:
+ Seemingly native toolchains are toolchains that target the same architecture
+ as the one it is built on, and on which it will run, but the machine tuple
+ may be different (eg i686 vs. i386, or x86_64-unknown-linux-gnu vs.
+ x86_64-pc-linux-gnu).
+
+ This seems to happen when building glibc-2.7 based toolchains only, for
+ x86 and for x86_64.
+
+ Only the system part of the tuple (here, linux-gnu) needs to be the same to
+ trigger the bug.
+
+ If you really cross-compile (eg x86 -> x86_64, or the other way around),
+ the toolchain builds successfully.
+
+Fix:
+ None known.
+
+Workaround:
+ If this happens for you, stick with glibc-2.6.1 for now.
+ Or investigate! :-)
+
+--------------------------------