在工作目錄下建立helloworld.c文件
- #include <stdio.h>
- main()
- {
- printf("helloworld!\n");
- }
保存關閉後。
編譯helloworld文件:
- [email protected]:/home/workdir/qt/project/helloworld# arm-linux-gcc helloworld.c -o helloworld
生成可執行文件helloworld:
將可執行文件helloworld拷貝到文件系統目錄,並執行
執行成功。
這是最簡單的交叉編譯示例。