Mastering Embedded Linux Programming 学习 (一)
一、ubuntu 软件包下载
sudo apt install autoconf automake bison bzip2 cmake \
flex g++ gawk gcc gettext git gperf help2man libncurses5-dev libstdc++6 libtool \
libtool-bin make patch python3-dev rsync texinfo unzip wget xz-utils
二、安装QEMU
qemu-system-arm -machine vexpress-a9 -m 256M -drive file=rootfs.ext4,sd -net nic -net use -kernel zImage -dtb vexpress-v2p-ca9.dtb -append "console=ttyAMA0,115200 root=/dev/mmcblk0" -serial stdio -net nic,model=lan9118 -net tap,ifname=tap0
使用上面的命令创建一个虚拟机
sudo tunctl -u $(whoami) -t tap0
上面的一行命令创建一个名为tap0的网络接口,tunctl命令需要安装一个uml-utilities的软件包
三、安装crosstool-NG
# git clone https://github.com/crosstool-ng/crosstool-ng.git
git clone https://gitee.com/ffbuild/crosstool-ng.git
cd crosstool-ng
git checkout crosstool-ng-1.24.0
./bootstrap
./configure --prefix=${PWD}
make
make install
四、使用crosstool-NG为BeagleBone Black构建工具链
输出支持的工具链
执行完上面的命令之后,使用下面的命令可以列出支持哪些工具链
bin/ct-ng list-samples
显示工具链配置
bin/ct-ng show-arm-cortex_a8-linux-gnueabi
类似的就是在list-samples输出的选项前面加上show-前缀,输出相应工具链的信息
上面的命令输出如下图所示
选择工具链
要选择一个工具链,使用如下的命令就可以指定一个工具链
bin/ct-ng arm-cortex_a8-linux-gnueabi
配置工具链
bin/ct-ng menuconfig
使用上面的命令就可以图形化配置我们的工具链,如下图所示
建议:
- 在Paths and misc options选项下禁用 Render the toolchain read-only
- 在Target options | Floating point选项下选中hardware(FPU)(CT_ARCH_FLOAT_HW)
- 在Target options选项下的Use specific FPU 输入neon
构建工具链
bin/ct-ng build
运行上面的命令就开始为BeagleBone Black构建交叉编译工具链了
不出意外还是出意外了
好家伙,跑了两个多小时,报错了
调试开始
- 参考博客下载离线包Linux-交叉编译工具链的制作(crosstool-ng-1.24)
- 修改.config文件里面的src路径,把build时需要下载的包手动下载放到文件夹下面就可以了(上面的博客提供的仓库的软件包在2022.11.4日已经更新了,需要重新下载对应版本的)
- linux内核源码下载国内源
- expat下载国内源
- ncurses-6.1下载国内源
…
然后就可以build成功了
调试结束
五、使用crosstool-NG为QEMU构建工具链
首先运行
bin/ct-ng distclean
清除之前build留下的内容
后面的步骤和BeagleBone Black构建相同,只需要禁用Paths and misc options下的Render the toolchain readonly就可以了
注意:还需要修改src目录,这样才能找到我们下载好的各种软件源码压缩包