diff options
author | Johannes Stezenbach <js@sig21.net> | 2012-02-13 21:10:06 +0100 |
---|---|---|
committer | Johannes Stezenbach <js@sig21.net> | 2012-02-13 21:10:06 +0100 |
commit | b8bbe07c7adf2c2fc9483dc4101d02dbf2287e0a (patch) | |
tree | 94acbe7f6dabeb0513f087457cab8d5e2f08718d | |
parent | 3b6aa027d7ef07ad11d2275d2f6d6246a6d2a324 (diff) | |
download | crosstool-ng-b8bbe07c7adf2c2fc9483dc4101d02dbf2287e0a.tar.gz crosstool-ng-b8bbe07c7adf2c2fc9483dc4101d02dbf2287e0a.tar.bz2 crosstool-ng-b8bbe07c7adf2c2fc9483dc4101d02dbf2287e0a.zip |
docs/known-issues: add note about build issue on x86_64 with 32bit userspace
Signed-off-by: Johannes Stezenbach <js@sig21.net>
(transplanted from da77b5e7cb9f921d0e2a22818b7945906100e704)
-rw-r--r-- | docs/B - Known issues.txt | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/docs/B - Known issues.txt b/docs/B - Known issues.txt index f753ac6b..0217b7a8 100644 --- a/docs/B - Known issues.txt +++ b/docs/B - Known issues.txt @@ -233,3 +233,23 @@ Workaround: See above issue. -------------------------------- +Symptoms: + On x86_64 hosts with 32bit userspace the GMP build fails with: + configure: error: Oops, mp_limb_t is 32 bits, but the assembler code + in this configuration expects 64 bits. + You appear to have set $CFLAGS, perhaps you also need to tell GMP the + intended ABI, see "ABI and ISA" in the manual. + +Explanations: + "uname -m" detects x86_64 but the build host is really x86. + +Status: + CURRENT + +Fix: + None so far. See above issue. + +Workaround: + use "setarch i686 ct-ng build" + +-------------------------------- |