summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
Diffstat (limited to 'docs')
-rw-r--r--docs/known-issues.txt25
1 files changed, 21 insertions, 4 deletions
diff --git a/docs/known-issues.txt b/docs/known-issues.txt
index 5228b10..b318de3 100644
--- a/docs/known-issues.txt
+++ b/docs/known-issues.txt
@@ -44,10 +44,8 @@ Explanations:
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.
+ trigger the bug. Which means that building a tolchain for either x86 or
+ x86_64 on either x86 or x86_64 breaks.
Fix:
None known.
@@ -57,3 +55,22 @@ Workaround:
Or investigate! :-)
--------------------------------
+Symptoms:
+ gcc is not found, although I *do* have gcc installed.
+
+Explanations:
+ This is an issue on at least RHEL systems, where gcc is a symlink to ccache.
+ Because crosstool-NG create links to gcc for the build and host environment,
+ those symlinks are in fact pointing to ccache, which then doesn't know how
+ to run the compiler.
+
+ A possible fix could probably set the environment variable CCACHE_CC to the
+ actual compiler used.
+
+Fix:
+ None known.
+
+Workaround:
+ Uninstall ccache.
+
+--------------------------------