Chinaunix首页 | 论坛 | 博客
  • 博客访问: 211544
  • 博文数量: 67
  • 博客积分: 1237
  • 博客等级: 中尉
  • 技术积分: 630
  • 用 户 组: 普通用户
  • 注册时间: 2011-07-01 23:24
文章存档

2012年(8)

2011年(59)

分类: LINUX

2011-08-08 22:57:15

Binutils-2.17 - Pass 2

代码:

tar xvf /lfs-sources/binutils-2.17.tar.bz2

mkdir -v binutils-build

cd binutils-build

../binutils-2.17/configure --prefix=/tools --disable-nls \

 --with-lib-path=/tools/lib

make

make install

make -C ld clean

make -C ld LIB_PATH=/usr/lib:/lib

cp -v ld/ld-new /tools/bin

cd ..

rm -rf binutils-build

rm -rf binutils-2.17

 

 

Ncurses-5.6

代码:

tar xvf /lfs-sources/ncurses-5.6.tar.gz

cd ncurses-5.6

./configure --prefix=/tools --with-shared --without-debug --without-ada --enable-overwrite

make

make install

cd ..

rm -rf ncurses-5.6


Bash-3.2

代码:

tar xvf /lfs-sources/bash-3.2.tar.gz

cd bash-3.2

patch -Np1 -i /lfs-sources/bash-3.2-fixes-5.patch

./configure --prefix=/tools --without-bash-malloc

make

make install

ln -vs bash /tools/bin/sh

cd ..

rm -rf bash-3.2


Bzip2-1.0.4

代码:

tar xvf /lfs-sources/bzip2-1.0.4.tar.gz

cd bzip2-1.0.4

make

make PREFIX=/tools install

cd ..

rm -rf bzip2-1.0.4

 

 

Coreutils-6.9

代码:

tar xvf /lfs-sources/coreutils-6.9.tar.bz2

cd coreutils-6.9

./configure --prefix=/tools

make

make install

cp -v src/su /tools/bin/su-tools

cd ..

rm -rf coreutils-6.9


Diffutils-2.8.1

代码:

tar xvf /lfs-sources/diffutils-2.8.1.tar.gz

cd diffutils-2.8.1

./configure --prefix=/tools

make

make install

cd ..

rm -rf diffutils-2.8.1

 

阅读(1176) | 评论(0) | 转发(0) |
0

上一篇:LFS第六课笔记

下一篇:LFS第八课笔记

给主人留下些什么吧!~~