- 1、本文档共72页,可阅读全部内容。
- 2、原创力文档(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。
- 3、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载。
- 4、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
查看更多
个人笔记(嵌入式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
文档评论(0)