在主机上通过arm-fsl-linux-gnueabi-gcc -o hello hello.c,通过FTP传到板子上运行,也有chmod,但是提示segmata
tion default;后来直接arm-fsl-linux-gnueabi-gcc hello.c,生成的a.out到板子上运行竟然可以。这是什么原因呢。
hello.c只是普通的打印函数,代码见下:
#include
int main(int argc,char **argv)
{
printf("hello.world!rn");
return 0;
}