makefile交叉编译helloworld_makefile 交叉编译_火星机器人life的博客-CSDN博客

网站介绍:文章浏览阅读3.8k次,点赞2次,收藏21次。makefile交叉编译helloworld主要需要修改的是在本地编译helloworld基础上修改本地工具链为交叉编译工具链。1.本地使用makefile编译helloworld如图为工程目录结构.├── hello.c├── hello.h├── main.c├── Makefile├── world.c└── world.hhello.c文件#include<stdio.h>#include"hello.h"void hello(){ prin_makefile 交叉编译