Changeset 4809582
- Timestamp:
- 09/16/2021 07:37:01 AM (21 months ago)
- Branches:
- 11.1, 11.1-rc1, 11.2, 11.2-rc1, 11.3, 11.3-rc1, arm, bdubbs/gcc13, multilib, s6-init, trunk, xry111/arm64, xry111/clfs-ng, xry111/glibc-2.37, xry111/kcfg-revise, xry111/lfs-next, xry111/pip3, xry111/queue-11.3, xry111/rust-wip-20221008
- Children:
- 0bf23c8
- Parents:
- 3c5b3f9 (diff), 43b6ecd (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)
links above to see all the changes relative to each parent. - Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
chapter03/introduction.xml
r3c5b3f9 r4809582 75 75 <screen role="nodump"><userinput>wget --input-file=wget-list --continue --directory-prefix=$LFS/sources</userinput></screen> 76 76 77 <note><para> 78 The <filename>wget-list</filename> file mentioned above retrieves all 79 packages for both the sysV and systemd versions of LFS. There are a total 80 of five additional small packages not needed for the currrent book. The 81 <filename>md5sums</filename> file mentioned below is specific to the 82 current book. 83 </para></note> 84 77 85 <para>Additionally, starting with LFS-7.0, there is a separate file, 78 86 <ulink url="../md5sums">md5sums</ulink>, which can be used to verify that all -
chapter05/gcc-pass1.xml
r3c5b3f9 r4809582 81 81 <para>Prepare GCC for compilation:</para> 82 82 83 <screen><userinput remap="configure">../configure 84 --target=$LFS_TGT 85 --prefix=$LFS/tools 86 --with-glibc-version=2.11 87 --with-sysroot=$LFS 88 --with-newlib 89 --without-headers 90 --enable-initfini-array 91 --disable-nls 92 --disable-shared 93 --disable-multilib 94 --disable-decimal-float 95 --disable-threads 96 --disable-libatomic 97 --disable-libgomp 98 --disable-libquadmath 99 --disable-libssp 100 --disable-libvtv 101 --disable-libstdcxx 83 <screen><userinput remap="configure">../configure \ 84 --target=$LFS_TGT \ 85 --prefix=$LFS/tools \ 86 --with-glibc-version=2.11 \ 87 --with-sysroot=$LFS \ 88 --with-newlib \ 89 --without-headers \ 90 --enable-initfini-array \ 91 --disable-nls \ 92 --disable-shared \ 93 --disable-multilib \ 94 --disable-decimal-float \ 95 --disable-threads \ 96 --disable-libatomic \ 97 --disable-libgomp \ 98 --disable-libquadmath \ 99 --disable-libssp \ 100 --disable-libvtv \ 101 --disable-libstdcxx \ 102 102 --enable-languages=c,c++</userinput></screen> 103 103 <variablelist>
Note:
See TracChangeset
for help on using the changeset viewer.