Linux From Scratch(从零开始构建Linux系统,简称LFS)- Version 7.7(二)

七. 构建临时系统

  1. 通用编译指南

    a. 确认是否正确设置了 LFS 环境变量

echo $LFS

    b. 假定你已经正确地设置了宿主系统的符号链接:

      1)shell 使用的是 bash

      2)sh 是到 bash 的符号链接。

      3)/usr/bin/awk 是到 gawk 的符号链接。

      4)/usr/bin/yacc 是到 bison 的符号链接或者一个执行 bison 的小脚本。

    c. 构建临时系统中,确保解压软件包时你使用的是 lfs 用户。

    d. 除非特别说明,删除解压出来的目录和所有编译过程中生成的 <package>-build 目录。

  2. Binutils-2.25 - 第一遍  

cd $LFS/sources
tar -jxf binutils-2.25.tar.bz2
cd binutils-2.25
mkdir -v ../binutils-build      # 建议在源码目录之外一个专门的编译目录里面编译
cd ../binutils-build
../binutils-2.25/configure     \
    --prefix=/tools            \
    --with-sysroot=$LFS        \
    --with-lib-path=/tools/lib \
    --target=$LFS_TGT          \
    --disable-nls              \
    --disable-werror
make

# 如果是在 x86_64 上编译,创建符号链接,以确保工具链的完整性
case $(uname -m) in
  x86_64) mkdir -v /tools/lib && ln -sv lib /tools/lib64 ;;
esac

make install
rm -rf $LFS/sources/binutils-build
rm -rf $LFS/sources/binutils-2.25

  3. GCC-4.9.2 - 第一遍

cd $LFS/sources
tar -jxf gcc-4.9.2.tar.bz2
cd gcc-4.9.2

tar -xf ../mpfr-3.1.2.tar.xz
mv -v mpfr-3.1.2 mpfr
tar -xf ../gmp-6.0.0a.tar.xz
mv -v gmp-6.0.0 gmp
tar -xf ../mpc-1.0.2.tar.gz
mv -v mpc-1.0.2 mpc

for file in  $(find gcc/config -name linux64.h -o -name linux.h -o -name sysv4.h)
do
  cp -uv $file{,.orig}
  sed -e ‘[email protected]/lib\(64\)\?\(32\)\?/[email protected]/tools&@g‘ \
      -e ‘[email protected]/[email protected]/[email protected]‘ $file.orig > $file
  echo ‘
#undef STANDARD_STARTFILE_PREFIX_1
#undef STANDARD_STARTFILE_PREFIX_2
#define STANDARD_STARTFILE_PREFIX_1 "/tools/lib/"
#define STANDARD_STARTFILE_PREFIX_2 ""‘ >> $file
  touch $file.orig
done

sed -i ‘/k prot/agcc_cv_libc_provides_ssp=yes‘ gcc/configure

mkdir -v ../gcc-build
cd ../gcc-build

../gcc-4.9.2/configure                             \
    --target=$LFS_TGT                              \
    --prefix=/tools                                \
    --with-sysroot=$LFS                            \
    --with-newlib                                  \
    --without-headers                              \
    --with-local-prefix=/tools                     \
    --with-native-system-header-dir=/tools/include \
    --disable-nls                                  \
    --disable-shared                               \
    --disable-multilib                             \
    --disable-decimal-float                        \
    --disable-threads                              \
    --disable-libatomic                            \
    --disable-libgomp                              \
    --disable-libitm                               \
    --disable-libquadmath                          \
    --disable-libsanitizer                         \
    --disable-libssp                               \
    --disable-libvtv                               \
    --disable-libcilkrts                           \
    --disable-libstdc++-v3                         \
    --enable-languages=c,c++

make
make install

rm -rf $LFS/sources/gcc-build
rm -rf $LFS/sources/gcc-4.9.2

  4. Linux-3.19 API 头文件

cd $LFS/sources
tar -Jxf linux-3.19.tar.xz
cd linux-3.19

make mrproper
make INSTALL_HDR_PATH=dest headers_install
cp -rv dest/include/* /tools/include
rm -rf $LFS/sources/linux-3.19

  5. Glibc-2.21

cd $LFS/sources
tar -Jxf glibc-2.21.tar.xz
cd glibc-2.21

if [ ! -r /usr/include/rpc/types.h ]; then
  su -c ‘mkdir -pv /usr/include/rpc‘
  su -c ‘cp -v sunrpc/rpc/*.h /usr/include/rpc‘
fi
sed -e ‘/ia32/s/^/1:/‘ \
    -e ‘/SSE2/s/^1://‘ \
    -i  sysdeps/i386/i686/multiarch/mempcpy_chk.S

mkdir -v ../glibc-build
cd ../glibc-build

../glibc-2.21/configure                             \
      --prefix=/tools                               \
      --host=$LFS_TGT                               \
      --build=$(../glibc-2.21/scripts/config.guess) \
      --disable-profile                             \
      --enable-kernel=2.6.32                        \
      --with-headers=/tools/include                 \
      libc_cv_forced_unwind=yes                     \
      libc_cv_ctors_header=yes                      \
      libc_cv_c_cleanup=yes

make
make install
rm -rf $LFS/sources/glibc-build
rm -rf $LFS/sources/glibc-2.21

  6. 确认新工具链的基本功能(编译和链接)都是像预期的那样正常工作。运行下面的命令进行全面的检查:

echo ‘main(){}‘ > dummy.c
$LFS_TGT-gcc dummy.c
readelf -l a.out | grep ‘: /tools‘

    如果一切工作正常的话,这里应该没有错误,最后一个命令的输出形式会是:

[Requesting program interpreter: /tools/lib/ld-linux.so.2]

    注意 /tools/lib、或者 64 位机器的 /tools/lib64 会以动态链接器的前缀出现。

    一旦一切都顺利,清理测试文件:

rm -v dummy.c a.out

  7. Libstdc++-4.9.2

cd $LFS/sources
tar -jxf gcc-4.9.2.tar.bz2
cd gcc-4.9.2

mkdir -pv ../gcc-build
cd ../gcc-build

../gcc-4.9.2/libstdc++-v3/configure \
    --host=$LFS_TGT                 \
    --prefix=/tools                 \
    --disable-multilib              \
    --disable-shared                \
    --disable-nls                   \
    --disable-libstdcxx-threads     \
    --disable-libstdcxx-pch         \
    --with-gxx-include-dir=/tools/$LFS_TGT/include/c++/4.9.2

make
make install
rm -rf $LFS/sources/gcc-build
rm -rf $LFS/sources/gcc-4.9.2

  8. Binutils-2.25 - 第2遍

cd $LFS/sources
tar -jxf binutils-2.25.tar.bz2
cd binutils-2.25

mkdir -v ../binutils-build
cd ../binutils-build

CC=$LFS_TGT-gcc                \
AR=$LFS_TGT-ar                 \
RANLIB=$LFS_TGT-ranlib         ../binutils-2.25/configure     \
    --prefix=/tools            \
    --disable-nls              \
    --disable-werror           \
    --with-lib-path=/tools/lib \
    --with-sysroot

make
make install
rm -rf $LFS/sources/binutils-build
rm -rf $LFS/sources/binutils-2.25

  9. 现在,为接下来的“再调整”阶段准备链接器:

make -C ld clean
make -C ld LIB_PATH=/usr/lib:/lib
cp -v ld/ld-new /tools/bin

  10. GCC-4.9.2 - 第2遍

cd $LFS/sources
tar -jxf gcc-4.9.2.tar.bz2
cd gcc-4.9.2

cat gcc/limitx.h gcc/glimits.h gcc/limity.h > \
  `dirname $($LFS_TGT-gcc -print-libgcc-file-name)`/include-fixed/limits.h

for file in  $(find gcc/config -name linux64.h -o -name linux.h -o -name sysv4.h)
do
  cp -uv $file{,.orig}
  sed -e ‘[email protected]/lib\(64\)\?\(32\)\?/[email protected]/tools&@g‘ \
      -e ‘[email protected]/[email protected]/[email protected]‘ $file.orig > $file
  echo ‘
#undef STANDARD_STARTFILE_PREFIX_1
#undef STANDARD_STARTFILE_PREFIX_2
#define STANDARD_STARTFILE_PREFIX_1 "/tools/lib/"
#define STANDARD_STARTFILE_PREFIX_2 ""‘ >> $file
  touch $file.orig
done

tar -xf ../mpfr-3.1.2.tar.xz
mv -v mpfr-3.1.2 mpfr
tar -xf ../gmp-6.0.0a.tar.xz
mv -v gmp-6.0.0 gmp
tar -xf ../mpc-1.0.2.tar.gz
mv -v mpc-1.0.2 mpc

mkdir -v ../gcc-build
cd ../gcc-build

CC=$LFS_TGT-gcc                                    \
CXX=$LFS_TGT-g++                                   \
AR=$LFS_TGT-ar                                     \
RANLIB=$LFS_TGT-ranlib                             ../gcc-4.9.2/configure                             \
    --prefix=/tools                                \
    --with-local-prefix=/tools                     \
    --with-native-system-header-dir=/tools/include \
    --enable-languages=c,c++                       \
    --disable-libstdcxx-pch                        \
    --disable-multilib                             \
    --disable-bootstrap                            \
    --disable-libgomp

make
make install
ln -sv gcc /tools/bin/cc
rm -rf $LFS/sources/gcc-build
rm -rf $LFS/sources/gcc-4.9.2

  11. 确认新工具链的基本功能(编译和链接)都是像预期的那样正常工作。运行下面的命令进行全面的检查:

echo ‘main(){}‘ > dummy.c
cc dummy.c
readelf -l a.out | grep ‘: /tools‘

    如果一切工作正常的话,这里应该没有错误,最后一个命令的输出形式会是:

[Requesting program interpreter: /tools/lib/ld-linux.so.2]

    注意 /tools/lib、或者 64 位机器的 /tools/lib64 会以动态链接器的前缀出现。

    一旦一切都顺利,清理测试文件:

rm -v dummy.c a.out

  12. Tcl-8.6.3

      此软件包和后面三个包(Expect、DejaGNU 和 Check)用来为 GCC 和 Binutils 还有其他的一些软件包的

    测试套件提供运行支持。

cd $LFS/sources
tar -zxf tcl8.6.3-src.tar.gz
cd tcl8.6.3

cd unix
./configure --prefix=/tools

make
make install

chmod -v u+w /tools/lib/libtcl8.6.so
make install-private-headers
ln -sv tclsh8.6 /tools/bin/tclsh

rm -rf $LFS/sources/tcl8.6.3

  13. Expect-5.45

cd $LFS/sources
tar -zxf expect5.45.tar.gz
cd expect5.45

cp -v configure{,.orig}
sed ‘s:/usr/local/bin:/bin:‘ configure.orig > configure

./configure --prefix=/tools       \
            --with-tcl=/tools/lib \
            --with-tclinclude=/tools/include

make
make SCRIPTS="" install
rm -rf $LFS/sources/expect5.45

  14. DejaGNU-1.5.2

cd $LFS/sources
tar -zxf dejagnu-1.5.2.tar.gz
cd dejagnu-1.5.2

./configure --prefix=/tools

make install
rm -rf $LFS/sources/dejagnu-1.5.2

  15. Check-0.9.14

cd $LFS/sources
tar -zxf check-0.9.14.tar.gz
cd check-0.9.14

PKG_CONFIG= ./configure --prefix=/tools

make
make install
rm -rf $LFS/sources/check-0.9.14

  16. Ncurses-5.9

cd $LFS/sources
tar -zxf ncurses-5.9.tar.gz
cd ncurses-5.9

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

make
make install
rm -rf $LFS/sources/ncurses-5.9

  17. Bash-4.3.30

cd $LFS/sources
tar -zxf bash-4.3.30.tar.gz
cd bash-4.3.30

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

make
make install
ln -sv bash /tools/bin/sh
rm -rf $LFS/sources/bash-4.3.30

  18. Bzip2-1.0.6

cd $LFS/sources
tar -zxf bzip2-1.0.6.tar.gz
cd bzip2-1.0.6

make
make PREFIX=/tools install
rm -rf $LFS/sources/bzip2-1.0.6

  19. Coreutils-8.23

cd $LFS/sources
tar -Jxf coreutils-8.23.tar.xz
cd coreutils-8.23

./configure --prefix=/tools --enable-install-program=hostname

make
make install
rm -rf $LFS/sources/coreutils-8.23

  20. Diffutils-3.3

cd $LFS/sources
tar -Jxf diffutils-3.3.tar.xz
cd diffutils-3.3

./configure --prefix=/tools

make
make install
rm -rf $LFS/sources/diffutils-3.3

  21. File-5.22

cd $LFS/sources
tar -zxf file-5.22.tar.gz
cd file-5.22

./configure --prefix=/tools

make
make install
rm -rf $LFS/sources/file-5.22

  22. Findutils-4.4.2

cd $LFS/sources
tar -zxf findutils-4.4.2.tar.gz
cd findutils-4.4.2

./configure --prefix=/tools

make
make install
rm -rf $LFS/sources/findutils-4.4.2

  23. Gawk-4.1.1

cd $LFS/sources
tar -Jxf gawk-4.1.1.tar.xz
cd gawk-4.1.1

./configure --prefix=/tools

make
make install
rm -rf $LFS/sources/gawk-4.1.1

  24. Gettext-0.19.4

cd $LFS/sources
tar -zxf gettext-0.19.4.tar.xz
cd gettext-0.19.4

cd gettext-tools
EMACS="no" ./configure --prefix=/tools --disable-shared

make -C gnulib-lib
make -C intl pluralx.c
make -C src msgfmt
make -C src msgmerge
make -C src xgettext

cp -v src/{msgfmt,msgmerge,xgettext} /tools/bin

rm -rf $LFS/sources/gettext-0.19.4

  25. Grep-2.21

cd $LFS/sources
tar -Jxf grep-2.21.tar.xz
cd grep-2.21

./configure --prefix=/tools

make
make install
rm -rf $LFS/sources/grep-2.21

  26. Gzip-1.6

cd $LFS/sources
tar -Jxf gzip-1.6.tar.xz
cd gzip-1.6

./configure --prefix=/tools

make
make install
rm -rf $LFS/sources/gzip-1.6

  27. M4-1.4.17

cd $LFS/sources
tar -jxf m4-1.4.17.tar.xz
cd m4-1.4.17

./configure --prefix=/tools

make
make install
rm -rf $LFS/sources/m4-1.4.17

  28. Make-4.1

cd $LFS/sources
tar -jxf make-4.1.tar.bz2
cd make-4.1

./configure --prefix=/tools --without-guile

make
make install
rm -rf $LFS/sources/make-4.1

  29. Patch-2.7.4

cd $LFS/sources
tar -Jxf patch-2.7.4.tar.xz
cd patch-2.7.4

./configure --prefix=/tools

make
make install
rm -rf $LFS/sources/patch-2.7.4

  30. Perl-5.20.2

cd $LFS/sources
tar -jxf perl-5.20.2.tar.bz2
cd perl-5.20.2

sh Configure -des -Dprefix=/tools -Dlibs=-lm

make
cp -v perl cpan/podlators/pod2man /tools/bin
mkdir -pv /tools/lib/perl5/5.20.2
cp -Rv lib/* /tools/lib/perl5/5.20.2

rm -rf $LFS/sources/perl-5.20.2

  31. Sed-4.2.2

cd $LFS/sources
tar -jxf sed-4.2.2.tar.bz2
cd sed-4.2.2

./configure --prefix=/tools

make
make install
rm -rf $LFS/sources/sed-4.2.2

  32. Tar-1.28

cd $LFS/sources
tar -jxf tar-1.28.tar.xz
cd tar-1.28

./configure --prefix=/tools

make
make install
rm -rf $LFS/sources/tar-1.28

  33. Texinfo-5.2

cd $LFS/sources
tar -Jxf texinfo-5.2.tar.xz
cd texinfo-5.2

./configure --prefix=/tools

make
make install
rm -rf $LFS/sources/texinfo-5.2

  34. Util-linux-2.26

cd $LFS/sources
tar -Jxf util-linux-2.26.tar.xz
cd util-linux-2.26

./configure --prefix=/tools                \
            --without-python               \
            --disable-makeinstall-chown    \
            --without-systemdsystemunitdir \
            PKG_CONFIG=""

make
make install
rm -rf $LFS/sources/util-linux-2.26

  35. Xz-5.2.0

cd $LFS/sources
tar -Jxf xz-5.2.0.tar.xz
cd xz-5.2.0

./configure --prefix=/tools

make
make install
rm -rf $LFS/sources/xz-5.2.0

  36. 清理无用内容

    此步骤是可选的,但如果你的 LFS 分区容量比较小,知道有些不必要的内容可以被删除也是挺好的。

cd ~
strip --strip-debug /tools/lib/*
/usr/bin/strip --strip-unneeded /tools/{,s}bin/*
rm -rf /tools/{,share}/{info,man,doc}

  37. 改变属主

    以后部分的命令都必须以 root 用户身份执行而不再是 lfs 用户。当前,$LFS/tools 目录属于 lfs 用户,

  通过下面的命令将 $LFS/tools 目录的属主改为 root 用户:

exit
chown -R root:root $LFS/tools

  38. 备份$LFS/tools 目录

    可用于构建额外的相同版本 LFS 系统。后面的指令将对当前的工具做些调整,导致在构建新系统时会失效。

时间: 2024-10-10 08:50:47

Linux From Scratch(从零开始构建Linux系统,简称LFS)- Version 7.7(二)的相关文章

Raspberry Pi(树莓派)上从零开始构建Linux系统(简称PiLFS)(三)

九. 系统配置 1. 安装 LFS-Bootscripts-20150222 软件包包含一套在 LFS 系统启动和关闭时的启动和停止脚本. cd /sources tar -jxf lfs-bootscripts-20150222.tar.bz2 cd lfs-bootscripts-20150222 make install cd /sources rm -rf lfs-bootscripts-20150222 2. 配置系统主机名称 echo "lfs" > /etc/hos

从零开始构建Linux

目的:深入了解以为Linux内核的系统是如何组成,运行,以构建一个最基础的,纯净的系统. LFS构建步骤宿主机准备 - linux操作系统安装 - 使用独立硬盘,创建分区 - 配置用户和组 - 下载所有需要的软件包源代码准备开发环境构建一个基本开发环境构造完整的目标系统配置系统启动脚本启动系统 一.宿主系统准备1.1.安装所需要依赖包 [[email protected] ~]# yum install -y bash binutils bison bzip2 coreutils diffuti

从零开始构建一个的asp.net Core 项目(二)

接着上一篇博客继续进行.上一篇博客只是显示了简单的MVC视图页,这篇博客接着进行,连接上数据库,进行简单的CRUD. 首先我在Controllers文件夹点击右键,添加->控制器 弹出的对话框中选择miniual Dependencies.在项目的根目录下添加一个Models文件夹,在该文件夹下添加一个Users.cs类.(该类在数据库中对应一张表,表名为Users 里边有三个字段 其中ID是主键,自增的.) public class Users { [Key] public int Id {

Linux From Scratch(从零开始构建Linux系统,简称LFS)

一. 准备工作 1. 一. LFS目标架构 LFS的主要目标架构是Intel的32位架构.32位的计算机架构最广泛的支持了Linux系统,同时32架构使开源软件和非开源的软件能够和谐的工作. 为了构建系统,先决条件是,除了后面提到的要求之外,你需要有一个已经存在的Linux系统,例如Ubuntu.Red Hat/Fedora 或者是其它适用于32架构的Linux发行版系统.还需要指出的是一个32位的发行版是可以在一个64位的AMD/Intel计算机上安装使用的. 从LFS所构建出来的默认的64位

Linux From Scratch(从零开始构建Linux系统,简称LFS)- Version 7.7(三)

八. 构建LFS系统 1. 准备虚拟内核文件系统 内核会挂载几个文件系统用于自己和用户空间程序交换信息.这些文件系统是虚拟的,并不占用实际磁盘空间,它们的内容会放在内存里. mkdir -pv $LFS/{dev,proc,sys,run} mknod -m 600 $LFS/dev/console c 5 1 mknod -m 666 $LFS/dev/null c 1 3 mount -v --bind /dev $LFS/dev mount -vt devpts devpts $LFS/d

高手从零开始的全定制发行版-Linux from Scratch

在制作Linux发行版中Linux from Scratch可谓是真正的大师级.Linux from Scratch是在线的社区创建的一本电子书,目的是帮助那些根深蒂固的想方设法提高计算机性能的人(tweaker)帮助他们来创建自己毫无争论的独一无二的发行版本. Linux from Scratch 困难程度:高:时间需求:200分钟:自定义程度:极高 对于想自定义他们的发行版本中所有的东西,从核心驱动的选择到默认文本编辑器是Vi还是Emacs的真正的Linux强者,没有比通过scratch来搭

LFS Linux From Scratch 笔记2(经验非教程)BLFS

LFS 完了. 其实还没完,还要装一些其他的组件,系统才算是对人类有用的系统. 正好这里有个BLFS Beyound Linux From Scratch 的教程. 其实,按照现有的可运行的LFS系统,我们完全可以直接自己编译.加入一些组件.只是BLFS里面加入了一些真正我们常用的组件,帮你顺理了一下思路. 看上去文件内容很多.http://www.linuxfromscratch.org/blfs/read.html 有一些系统组件的设定,安全设定等等.

用Busybox构建Linux根文件系统(转载)

注:本文转载自http://blog.sina.com.cn/u/2478597014 用Busybox构建Linux根文件系统 (2015-07-05 14:25:02)   虚拟机:Virtual Box4.2.6 和VMware Workstation6.5.2(这两种虚拟机都成功实作过) 开发环境:Linux版本2.6.32,采用Ubuntu10.04 arm-linux-gcc版本:3.4.1 Busybox版本:1.7.0 开发板:飞凌嵌入式S3C2440 开发板linux内核版本:

十天学Linux内核之第八天---构建Linux内核

今天是腊八节,说好的女票要给我做的腊八粥就这样泡汤了,好伤心,好心酸呀,看来代码写久了真的是惹人烦滴,所以告诫各位技术男敲醒警钟,不要想我看齐,不然就只能和代码为伴了的~~话说没了腊八粥但还是有代码,还有各位读者的支持呀,所以得继续写下去,静下心来,完成Linux内核的学习,坚持,加油~ 到目前为止,我们已经认识了Linux内核子系统,也探究了系统的初始化过程,并且深入探索了start_kernel()函数,同样,了解内核映像的创建也是非常重要的,接下来将讨论一下内核映像的编译和链接过程,那么这