基于3c2410的Linux2.6.22移植(3)

 

 

首页Linux编程

背景:

阅读新闻

基于3c2410的Linux2.6.22移植

[日期:2008-10-22]   来源:Linux社区  作者:templarzq Linux编辑   [字体:]  

4、 生成第一阶段gcc:

$root@host:/home/arm/build-tools/# tar xvjf gcc-4.2.1.tar.bz2

打补丁:

$root@host:/home/arm/build-tools/# cd gcc-4.2.1

$root@host:/home/arm/build-tools/gcc-4.2.1#

patch –Np1 –i /home/arm/build-tools/patch/gcc-4.2.1-*

$root@host:/home/arm/build-tools/ gcc-4.2.1# cd ..

$root@host:/home/arm/build-tools/# cd build-boot-gcc

$root@host:/home/arm/build-tools/build-boot-gcc#

../gcc-4.2.1/configure --target=${TARGET} --prefix=${PREFIX}  --with-headers=${TARGET_PREFIX}/include

--with-newlib --enable-languages=c --disable-threads --disable-shared

$root@host:/home/arm/build-tools/build-boot-gcc # make all-gcc

$root@host:/home/arm/build-tools/build-boot-gcc # make install-gcc

在${PREFIX}/bin下会生成 arm-linux-开头的文件:

$root@host:/home/arm/build-tools/build-boot-gcc # ls ${PREFIX}/bin

5、 生成glibc库文件:

$root@host:/home/arm/build-tools/build-boot-gcc # cd ..

$root@host:/home/arm/build-tools# cd build-glibc

$root@host:/home/arm/build-tools/build-glibc# CC=arm-linux-gcc ../glibc-2.6.1/configure --host=$TARGET --prefix=”/usr”

--enable-add-ons --with-headers=${TARGET_PREFIX}/include

--cache-file=config.cache

这里的config.cache与前面编译glibc头文件时的config.cache完全相同。

$root@host:/home/arm/build-tools/build-glibc# make

$root@host:/home/arm/build-tools/build-glibc#

make install_root=${TARGET_PREFIX} prefix=”” install

对libc.so作出修改:

$root@host:/home/arm/build-tools/build-glibc# cd ${TARGET_PREFIX}/lib

$root@host:/home/arm/tools/arm-linux/lib#  cat libc.so

OUTPUT_FORMAT(elf32-littlearm)

GROUP ( /lib/libc.so.6 /lib/libc_nonshared.a  AS_NEEDED ( /lib/ld-linux.so.2 ) )

将GROUP这一行的内容改为:

GROUP ( libc.so.6 libc_nonshared.a  AS_NEEDED ( ld-linux.so.2 ) )

$root@host:/home/arm/tools/arm-linux/lib#  cat libpthread.so

OUTPUT_FORMAT(elf32-littlearm)

GROUP ( /lib/libpthread.so.0 /lib/libpthread_nonshared.a )

将GROUP这一行的内容改为:

GROUP (libpthread.so.0  libpthread_nonshared.a )

6、 生成完整的编译工具:

$root@host:/home/arm/tools/arm-linux/lib# cd ${PRJROOT}/build-tools/build-gcc

$root@host:/home/arm/build-tools/build-gcc#

../gcc-4.2.1/configure --target=$TARGET --prefix=${PREFIX}  --enable-shared

--enable-languages=c,c++ --with-threads=posix

$root@host:/home/arm/build-tools/build-glibc# make all

$root@host:/home/arm/build-tools/build-glibc# make in install

 

C++异步编程方式

Linux下安装PCI转串口卡及USB转串口器的驱动方法

相关资讯       Linux教程 

   

本文评论   查看全部评论 (0)


评论声明

尊重网上道德,遵守中华人民共和国的各项有关法律法规

承担一切因您的行为而直接或间接导致的民事或刑事法律责任

本站管理人员有权保留或删除其管辖留言中的任意内容

本站有权在网站内转载或引用您的评论

参与本评论即表明您已经阅读并接受上述条款

 

 

 

最新资讯

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:https://www.heiqu.com/wzygyp.html