I am new to Pandaboard development. I am using CodeSourcery cross compiler to cross compile my application code. My application is a simple 'hello world' app. I am using this for cross-compilation:
arm-none-linux-gnueabi-gcc app.c -o app.out -march=armv5
I am able to generate the app.out
.
But when I copied this app.out to my panda board and tried to execute it, I got this exception:
-bash: ./app.out: No such file or directory
How can I resolve this?