Download:
wget http://opensrc.sec.samsung.com/download/arm-elf-tools-20040427.sh
Install the toolchain as root user:
- sudo ./arm-elf-tools-20030314.sh
If you get the error message 'tail: cannot open `+43' for reading: No such file or directory' when installing, change line 39 from:
vim -b ./arm-elf-tools-20030314.sh
- tail +${SKIP} ${SCRIPT} | gunzip | tar xvf -
to:
- tail -n+${SKIP} ${SCRIPT} | gunzip | tar xvf -
本文介绍如何下载并安装ARM ELF工具链。通过wget命令下载工具链文件后,使用sudo权限进行安装。若遇到安装错误,如'tail:无法打开文件',需修改安装脚本中的tail命令参数。

被折叠的 条评论
为什么被折叠?



