summaryrefslogtreecommitdiffstats
path: root/docs
diff options
context:
space:
mode:
authorThomas Waldmann <tw@waldmann-edv.de>2015-08-29 05:41:41 +0200
committerThomas Waldmann <tw@waldmann-edv.de>2015-08-29 05:41:41 +0200
commitd2e5ce90f28f5550ca6d9946b83fdecd6108190f (patch)
tree96622430a6f0e65faeb7484a0fb97a6c2fb68aa6 /docs
parent273c04329f9e71c2f816742d30cf0deaecb10101 (diff)
add FAQ entry about OS X commandline vs. HFS+ encoding issue, see #143.
a real fix for this is in development, but needs some time.
Diffstat (limited to 'docs')
-rw-r--r--docs/faq.rst12
1 files changed, 12 insertions, 0 deletions
diff --git a/docs/faq.rst b/docs/faq.rst
index 37e7b2dfe..d13fe67f1 100644
--- a/docs/faq.rst
+++ b/docs/faq.rst
@@ -86,6 +86,18 @@ If it crashes with a UnicodeError, what can I do?
export LANG=en_US.UTF-8 # or similar, important is correct charset
+I can't extract non-ascii filenames by giving them on the commandline on OS X!?
+ This is due to different ways to represent some characters in unicode.
+ HFS+ likes the decomposed form while the commandline seems to be the composed
+ form usually. If you run into that, for now maybe just try:
+
+ - avoiding the non-ascii characters on the commandline by e.g. extracting
+ the parent directory (or even everything)
+ - try to enter the composed form on the commandline
+ - mount the repo using FUSE and use some file manager
+
+ See issue #143 on the issue tracker for more about this.
+
If I want to run |project_name| on a ARM CPU older than ARM v6?
You need to enable the alignment trap handler to fixup misaligned accesses::