c程序嵌入式ARM7(交叉编译)
代码调试
1. 安装VSCode
2. VSCode扩展添加(C/C++ Extension Pack ;Code Runner)
3. 安装gcc(MinGW-W64)并配置环境变量 ,验证:gcc -v
window
gcc -o hello.exe hello.c
linux
gcc -o hello hello.c
arm(静态编译)
arm-linux-gnueabihf-gcc -static -o hello hello.c
ubuntu下安装交叉编译工具链
sudo apt-get install gcc-arm-linux-gnueabihf
拷贝至armv7l下运行
qq:505645074