- 14
- 0
- 约8.51万字
- 约 72页
- 2017-09-13 发布于江苏
- 举报
个人笔记(嵌入式lnux)
个人笔记(嵌入式linux)
编译交叉工具链:
方法一:
1. get all the source files
linux-2.4.9.tar.gz, patch-2.4.9-ac9.gz, patch-2.4.9-ac9-rmk1.bz2, diff-2.4.9-ac9-rmk1-np1.gz,
binutils-2.11.2.tar.gz, gcc-2.95.3.tar.gz, glibc-2.2.4.tar.gz, glibc-linuxthreads-2.2.4.tar.gz
2. install the binutils
# cd /tmp
# tar zxvf binutils-2.11.2.tar.gz
# cd binutils-2.11.2
# ./configure --target=armv4l-unknown-linux --prefix=/opt/host/armv4l
# make
# make install
3. make the binutils reachablel
# export PATH=/opt/host/armv4l/bin:$PATH
4. Installing gcc(c compiler)
# cd /tmp
# tar zxvf linux-2.4.9.tar.gz
# mv linux linux-2.4.9-ac9-rmk1-np1
# mv patch-2.4.9-ac9.gz patch-2.4.9-ac9-rmk1.bz2 diff-2.4.9-ac9-rmk1-np1.gz ./linux-2.4.9-
ac9-rmk1-np1
# cd linux-2.4.9-ac9-rmk1-np1 : kernel 2.4.9
# gzip -cd patch-2.4.9-ac9.gz | patch -p1 : Alan Cox patch
# bzip2 -cd patch-2.4.9-ac9-rmk1.bz2 | patch -p1 : Russell King patch
# gzip -cd diff-2.4.9-ac9-rmk1-np1.gz | patch -p1 : Nicholas Pitre patch
# make menuconfig : Do to create ARM header files. When you exit, select save item.
# make dep : Also do to create header files.
5. Now header files of the development version kernel are created at /usr/include directory. Copy them to develop directory
Link /usr/include directory to /opt/host/armv41/armv41-unknown-linux/include by symbolic link.
# cd /opt/host/armv4l/armv4l-unknown-linux
# cd include : If not existing, make include directory.
# cp -a /usr/include/* . : Copy all header files under /usr/include dir to the current dir.
# ln -s /tmp/linux-2.4.9-ac9-rmk1-np1/include/asm-arm asm
# ln -s /tmp/linux-2.4.9-ac9-rmk1-np1/include/linux linux
6. Then, install GCC C compiler as following.
# cd gcc-2.95.3
# ./configure --target=armv4l-unknown-linux --prefix=/opt/host/armv4l
# make LANGUAGES=c
# make LANGUAGES=c install
7. Installing glibc
# cd /tmp
# tar zxvf glibc-2.2.4.tar.gz
# mv glibc-linuxthreads-2.2.4.tar.gz ./glibc-2.2.4
# cd glibc-2.2.4
# tar zxvf glibc-linuxthreads-2.2.4.tar.gz
# CC=armv4l-unknown-linux-gcc ./configu
您可能关注的文档
最近下载
- 2025年度妇幼保健院工作总结及下一步工作打算.docx VIP
- 2025年电测仪表职业技能鉴定题库及答案(中级工).docx
- 【国盛-2025研报】华宏科技(002645):利润大幅增长,稀土价格上涨、产能释放提升盈利弹性.pdf
- 种猪场销售管理制度.docx VIP
- 2026年山东劳动职业技术学院单招《数学》考试历年机考真题集及答案详解【夺冠系列】.docx VIP
- ISO27001-2022 信息安全管理体系中文版.docx VIP
- 行政接待标准作业流程手册.docx VIP
- 亚投行介绍教学课件.pptx VIP
- 2025年技术培训合作合同范本.docx
- HEICO-LOCK楔入式防松系统-海阔紧固件.PDF VIP
原创力文档

文档评论(0)