On 11 March 2014 23:47, Felipe Rocha da Rosa frdarosa@inf.ufrgs.br wrote:
I'm trying to build the native compiler to a arm a9 using this tutorial, https://wiki.linaro.org/WorkingGroups/ToolChain/Using/GCCNative. However, I need to compile in a x86_64 platform ubuntu, like this --target=arm-unknown-eabi --build=i686-pc-linux-gnu --host=arm-unknown-eabi, but without success.
It's odd that you have to set --host as ARM, since your host is x86_64.
Also, GCC might be different, but arm-unknown-eabi is a bare metal toolchain, not a linux one, maybe that's another source of problems. Try arm-linux-gnueabi for soft-float and arm-linux-gnueabihf for hard-float.
cheers, --renato