Changeset 4ea78e0 for chapter08


Ignore:
Timestamp:
03/31/2021 10:41:40 AM (3 years ago)
Author:
Xℹ Ruoyao <xry111@…>
Branches:
ml-11.0, multilib
Children:
d7e0db5
Parents:
032dc4e8
git-author:
Thomas Trepl <thomas@…> (08/14/2020 03:04:02 AM)
git-committer:
Xℹ Ruoyao <xry111@…> (03/31/2021 10:41:40 AM)
Message:

Merge changes from trunk to multilib

git-svn-id: http://svn.linuxfromscratch.org/LFS/branches/multilib@12021 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689

Location:
chapter08
Files:
5 edited

Legend:

Unmodified
Added
Removed
  • chapter08/check.xml

    r032dc4e8 r4ea78e0  
    4343    <para>Prepare Check for compilation:</para>
    4444
    45 <screen><userinput remap="configure">./configure --prefix=/usr</userinput></screen>
     45<screen><userinput remap="configure">./configure --prefix=/usr --disable-static</userinput></screen>
    4646
    4747    <para>Build the package:</para>
     
    7272      <seglistitem>
    7373        <seg>checkmk</seg>
    74         <seg>libcheck.{a,so}</seg>
     74        <seg>libcheck.so</seg>
    7575      </seglistitem>
    7676    </segmentedlist>
  • chapter08/gcc.xml

    r032dc4e8 r4ea78e0  
    144144
    145145    <para>Additionally the following tests related to the following files
    146     are kown to fail with glibc-2.32: asan_test.C, co-ret-17-void-ret-coro.C,
     146    are known to fail with glibc-2.32: asan_test.C, co-ret-17-void-ret-coro.C,
    147147    pr95519-05-gro.C, pr80166.c.</para>
    148148
  • chapter08/kbd.xml

    r032dc4e8 r4ea78e0  
    8888
    8989<screen><userinput remap="install">make install</userinput></screen>
     90
     91    <para>Remove an internal library installed unintentionally:</para>
     92
     93<screen><userinput remap="install">rm -v /usr/lib/libtswrap.{a,la,so*}</userinput></screen>
    9094
    9195    <note>
  • chapter08/perl.xml

    r032dc4e8 r4ea78e0  
    5959             -Dprefix=/usr                                \
    6060             -Dvendorprefix=/usr                          \
    61              -Dprivlib=/usr/share/perl5/core_perl         \
    62              -Darchlib=/usr/lib/perl5/&perl-version-min;/core_perl      \
    63              -Dsitelib=/usr/share/perl5/site_perl         \
    64              -Dsitearch=/usr/lib/perl5/&perl-version-min;/site_perl     \
     61             -Dprivlib=/usr/lib/perl5/5.32/core_perl      \
     62             -Darchlib=/usr/lib/perl5/5.32/core_perl      \
     63             -Dsitelib=/usr/lib/perl5/5.32/site_perl      \
     64             -Dsitearch=/usr/lib/perl5/5.32/site_perl     \
    6565             -Dvendorlib=/usr/share/perl5/vendor_perl     \
    66              -Dvendorarch=/usr/lib/perl5/&perl-version-min;/vendor_perl \
     66             -Dvendorarch=/usr/lib/perl5/5.32/vendor_perl \
    6767             -Dman1dir=/usr/share/man/man1                \
    6868             -Dman3dir=/usr/share/man/man3                \
  • chapter08/systemd.xml

    r032dc4e8 r4ea78e0  
    4141    <title>Installation of systemd</title>
    4242
     43<!--
    4344    <para>First, apply a patch to fix the build with GCC-10 and fix a segfault:</para>
    4445
    4546<screen><userinput remap="pre">patch -Np1 -i ../systemd-&systemd-version;-gcc_10-fixes-2.patch</userinput></screen>
     47-->
    4648
    4749    <para>Create a symlink to work around the xsltproc command not being installed:</para>
     
    5557    <para>Remove tests that cannot be built in chroot:</para>
    5658
    57 <screen><userinput remap="pre">sed '179,$ d' -i src/resolve/meson.build</userinput></screen>
     59<screen><userinput remap="pre">sed '177,$ d' -i src/resolve/meson.build</userinput></screen>
    5860
    5961    <para>Remove an unneeded group,
     
    378380        /etc/sysctl.d, /etc/systemd, /etc/tmpfiles.d, /etc/udev,
    379381        /etc/xdg/systemd, /lib/systemd, /lib/udev, /usr/include/systemd,
    380         /usr/lib/binfmt.d, /usr/lib/kernel, /usr/lib/modules-load.d,
    381         /usr/lib/sysctl.d, /usr/lib/systemd, /usr/lib/tmpfiles.d,
     382        /usr/lib/binfmt.d, /usr/lib/environment.d, /usr/lib/kernel,
     383        /usr/lib/modules-load.d, /usr/lib/sysctl.d, /usr/lib/systemd,
     384        /usr/lib/tmpfiles.d,
    382385        /usr/share/doc/systemd-&systemd-version;, /usr/share/factory,
    383386        /usr/share/systemd, /var/lib/systemd, and /var/log/journal</seg>
Note: See TracChangeset for help on using the changeset viewer.