在工作目錄下建立helloworld.c文件
#include
main()
{
printf("helloworld!n");
}
保存關(guān)閉后。
編譯helloworld文件:
root@snail:/home/workdir/qt/project/helloworld#arm-linux-gcchelloworld.c-ohelloworld
生成可執(zhí)行文件helloworld:
將可執(zhí)行文件helloworld拷貝到文件系統(tǒng)目錄,并執(zhí)行
執(zhí)行成功。
這是最簡單的交叉編譯示例。