Changeset a09a914


Ignore:
Timestamp:
03/02/2014 06:29:21 PM (10 years ago)
Author:
Bruce Dubbs <bdubbs@…>
Branches:
10.0, 10.0-rc1, 10.1, 10.1-rc1, 11.0, 11.0-rc1, 11.0-rc2, 11.0-rc3, 11.1, 11.1-rc1, 11.2, 11.2-rc1, 11.3, 11.3-rc1, 12.0, 12.0-rc1, 12.1, 12.1-rc1, 7.6, 7.7, 7.8, 7.9, 8.0, 8.1, 8.2, 8.3, 8.4, 9.0, 9.1, arm, bdubbs/gcc13, ml-11.0, multilib, renodr/libudev-from-systemd, s6-init, trunk, xry111/arm64, xry111/arm64-12.0, xry111/clfs-ng, xry111/lfs-next, xry111/loongarch, xry111/loongarch-12.0, xry111/loongarch-12.1, xry111/mips64el, xry111/pip3, xry111/rust-wip-20221008, xry111/update-glibc
Children:
267dbec
Parents:
4a32085
Message:

Update host system requirements

git-svn-id: http://svn.linuxfromscratch.org/LFS/trunk/BOOK@10494 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689

Files:
5 edited

Legend:

Unmodified
Added
Removed
  • chapter01/changelog.xml

    r4a32085 ra09a914  
    3737-->
    3838    <listitem>
     39      <para>2014-03-02</para>
     40      <itemizedlist>
     41        <listitem>
     42          <para>[bdubbs] - Update host system requirements to address
     43          possible host installation of inconsistent libraries.</para>
     44        </listitem>
     45      </itemizedlist>
     46    </listitem>
     47
     48    <listitem>
    3949      <para>2014-02-18</para>
    4050      <itemizedlist>
  • chapter05/gettext.xml

    r4a32085 ra09a914  
    8181make -C src xgettext</userinput></screen>
    8282
    83     <para>As only three prograsm have been compiled, it is not possible to run the
     83    <para>As only three programs have been compiled, it is not possible to run the
    8484    test suite without compiling additional support libraries from the Gettext
    8585    package. It is therefore not recommended to attempt to run the test suite at
  • general.ent

    r4a32085 ra09a914  
    1 <!ENTITY version         "SVN-20140221">
    2 <!ENTITY releasedate     "February 21, 2014">
     1<!ENTITY version         "SVN-20140302">
     2<!ENTITY releasedate     "March 2, 2014">
    33<!ENTITY copyrightdate   "1999-2014"><!-- jhalfs needs a literal dash, not &ndash; -->
    44<!ENTITY milestone       "7.5">
  • prologue/hostreqs.xml

    r4a32085 ra09a914  
    6565      compiler, <command>g++</command> (Versions greater than &gcc-version; are
    6666      not recommended as they have not been tested)</para>
     67
     68      <note><para>On some distributions, there have been reports that some
     69      libraries used by gcc have can be in an inconsistent state and that this
     70      interferes with building some LFS packages.  To check this, look in
     71      /usr/lib for libgmp.la, libmpfr.la, and libmpc.la.  Either all three
     72      should be present or absent, but not only one or two.  If the problem
     73      exists on your system, either rename or delete the .la files or install
     74      the appropriate missing package.</para></note>
     75
    6776    </listitem>
    6877
     
    185194  then echo "g++ compilation OK";
    186195  else echo "g++ compilation failed"; fi
    187 rm -f dummy.c dummy</literal>
     196rm -f dummy.c dummy
     197
     198for lib in lib{gmp,mpfr,mpc}.la; do
     199  echo $lib: $(if find /usr/lib* -name $lib|
     200               grep -q $lib;then :;else echo not;fi) found
     201done
     202unset lib</literal>
    188203EOF
    189204
  • prologue/standards.xml

    r4a32085 ra09a914  
    113113        <term><emphasis>LSB Core:</emphasis></term>
    114114        <listitem>
    115           <para>At, Batch (a part of At), Cpio, Fcrontab, Initd-tools,
     115          <para>At, Batch (a part of At), Cpio, Ed, Fcrontab, Initd-tools,
    116116          Lsb_release, PAM, Sendmail (or Postfix or Exim) </para>
    117117        </listitem>
     
    166166        <term><emphasis>LSB Core:</emphasis></term>
    167167        <listitem>
    168           <para>None</para>
     168          <para>time (executable) and pax</para>
    169169        </listitem>
    170170      </varlistentry>
Note: See TracChangeset for help on using the changeset viewer.