歡迎來到Linux教程網
Linux教程網
Linux教程網
Linux教程網
您现在的位置: Linux教程網 >> UnixLinux >  >> Linux編程 >> Linux編程

Tiny6410 簡單的交叉編譯helloworld

在工作目錄下建立helloworld.c文件

  1. #include <stdio.h>   
  2. main()  
  3. {  
  4.     printf("helloworld!\n");  
  5. }  
保存關閉後。

編譯helloworld文件:

  1. [email protected]:/home/workdir/qt/project/helloworld# arm-linux-gcc helloworld.c -o helloworld  
生成可執行文件helloworld:


將可執行文件helloworld拷貝到文件系統目錄,並執行


執行成功。

這是最簡單的交叉編譯示例。

Copyright © Linux教程網 All Rights Reserved