Didenko Sergey wrote:
> CROSS_COMPILE - arm-none-linux-gnueabi

So, your compiler is named arm-none-linux-gnueabi-gcc

> checking build system type... i686-pc-linux-gnu
> checking host system type... arm-unknown-linux-gnu
> checking for a BSD-compatible install... /usr/bin/install -c
> checking for arm-linux-gcc... no
> checking for gcc... gcc
> configure: WARNING: using cross tools not prefixed with host triplet

No need to go further. Here you know that something went wrong.
configure tells you that it will use gcc (the x86 compiler) as compiler
because it could not find a compiler named arm-linux-gcc. This will
definitely not work.

Your compiler is arm-none-linux-gnueabi-gcc, not arm-linux-gcc, so, you
should either configure passing --host=arm-none-linux-gnueabi, or define
the CC variable to be arm-none-linux-gnueabi-gcc.

This is explained in README.INSTALL.

-- 
                                            Gilles.

_______________________________________________
Xenomai-help mailing list
[email protected]
https://mail.gna.org/listinfo/xenomai-help

Reply via email to