交叉编译工具链
公开版本使用可以参考这篇博文:一次搞定 Arm Linux 交叉编译
定制版本一般配置文件比较齐全,一键配置:
- 将交叉编译工具链文件夹放到对应目录(有的工具链存放目录已写入配置文件,如/opt/,更改存放文件夹可能导致无法使用)
- 进入交叉编译工具链,source environment-xxxx
- 查看交叉编译工具链是否设置成功:
arm-xxx-xxx-gcc -v
arm-xxx-xxx-g++ -v
交叉编译python
- 下载python源码: Python
- 解压源码:tar -xvf Python-3.10.4.tar.xz
- 进入文件夹:cd Python-3.10.4
- 先切换到python3.10环境下,或者在本地编译python(./configure ; make),同时创建软连接将运行python链接到本地编译python(ln -s ./python /xx/bin/python),否则直接交叉编译python会报错(checking for python interpreter for cross build… configure: error: python3.10 interpreter not found)
- 交叉编译:./confi