Changeset 89c1c43d


Ignore:
Timestamp:
05/04/2017 04:22:11 AM (7 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, 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:
aeaae4a
Parents:
427a460
Message:

Update to gcc-7.1.0.
Update to iproute2-4.11.0.
Fix some faulty gnulib code in diffutils.
Disable a failing test in vim.
Document a failing test in binutils.

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

Files:
7 edited

Legend:

Unmodified
Added
Removed
  • chapter01/changelog.xml

    r427a460 r89c1c43d  
    4747      <itemizedlist>
    4848        <listitem>
     49          <para>[bdubbs] - Update to gcc-7.1.0. Fixes
     50          <ulink url="&lfs-ticket-root;4082">#4082</ulink>.</para>
     51        </listitem>
     52        <listitem>
     53          <para>[bdubbs] - Update to iproute2-4.11.0. Fixes
     54          <ulink url="&lfs-ticket-root;4081">#4081</ulink>.</para>
     55        </listitem>
     56        <listitem>
    4957          <para>[bdubbs] - Fix a problem with glibc tests and
    5058          add some explanations to the configure options.</para>
  • chapter01/whatsnew.xml

    r427a460 r89c1c43d  
    9393      <para>Gawk &gawk-version;</para>
    9494    </listitem>-->
    95     <!--<listitem>
     95    <listitem>
    9696      <para>GCC &gcc-version;</para>
    97     </listitem>-->
     97    </listitem>
    9898    <listitem>
    9999      <para>GDBM &gdbm-version;</para>
  • chapter05/diffutils.xml

    r427a460 r89c1c43d  
    4444    <title>Installation of Diffutils</title>
    4545
     46    <para>First, fix some errors in the included gnulib code:</para>
     47
     48<screen><userinput remap="pre">sed -i '233,237 s/max)/max) \\/' lib/intprops.h</userinput></screen>
     49
    4650    <para>Prepare Diffutils for compilation:</para>
    4751
  • chapter06/binutils.xml

    r427a460 r89c1c43d  
    144144<screen><userinput remap="test">make -k check</userinput></screen>
    145145
     146    <para>One test, debug_msg.sh, is known ot fail.</para>
     147
    146148    <para>Install the package:</para>
    147149
  • chapter06/diffutils.xml

    r427a460 r89c1c43d  
    4242    <title>Installation of Diffutils</title>
    4343
    44     <para>First fix a file so locale files are installed:</para>
     44    <para>First fix a file so locale files are installed and fix the
     45    included gnulib code:</para>
    4546
    46 <screen><userinput remap="pre">sed -i 's:= @mkdir_p@:= /bin/mkdir -p:' po/Makefile.in.in</userinput></screen>
     47<screen><userinput remap="pre">sed -i 's:= @mkdir_p@:= /bin/mkdir -p:' po/Makefile.in.in
     48sed -i '233,237 s/max)/max) \\/' lib/intprops.h</userinput></screen>
    4749
    4850    <para>Prepare Diffutils for compilation:</para>
  • chapter06/vim.xml

    r427a460 r89c1c43d  
    4949<screen><userinput remap="pre">echo '#define SYS_VIMRC_FILE "/etc/vimrc"' &gt;&gt; src/feature.h</userinput></screen>
    5050
     51    <para>Disable a test that fails:</para>
     52
     53<screen><userinput remap="pre">sed -i '/call/{s/split/xsplit/;s/303/492/}' src/testdir/test_recover.vim</userinput></screen>
     54
    5155    <para>Prepare Vim for compilation:</para>
    5256
     
    5963    <para>To test the results, issue:</para>
    6064
    61 <screen><userinput remap="test">make -j1 test</userinput></screen>
     65<screen><userinput remap="test">make -j1 test &amp;&gt; vim-test.log</userinput></screen>
    6266
    6367    <para>However, this test suite outputs a lot of binary data to the screen,
    6468    which can cause issues with the settings of the current terminal. This can
    6569    be resolved by redirecting the output to a log file.  A successful test
    66     will result in the words "ALL DONE" at completion. One test,
    67     Test_recover_root_dir() is known to fail, but is harmless.</para>
     70    will result in the words "ALL DONE" at completion.</para>
    6871
    6972    <para>Install the package:</para>
  • packages.ent

    r427a460 r89c1c43d  
    208208<!ENTITY gawk-ch6-sbu "0.3 SBU">
    209209
    210 <!ENTITY gcc-version "6.3.0">
    211 <!ENTITY gcc-size "97,562 KB">
     210<!ENTITY gcc-version "7.1.0">
     211<!ENTITY gcc-size "82,328 KB">
    212212<!ENTITY gcc-url "&gnu;gcc/gcc-&gcc-version;/gcc-&gcc-version;.tar.bz2">
    213 <!ENTITY gcc-md5 "677a7623c7ef6ab99881bc4e048debb6">
     213<!ENTITY gcc-md5 "6bf56a2bca9dac9dbbf8e8d1036964a8">
    214214<!ENTITY gcc-home "http://gcc.gnu.org/">
    215215<!ENTITY gcc-ch5p1-du "2.5 GB">
     
    327327<!ENTITY intltool-ch6-sbu "less than 0.1 SBU">
    328328
    329 <!ENTITY iproute2-version "4.10.0">
    330 <!ENTITY iproute2-size "613 KB">
     329<!ENTITY iproute2-version "4.11.0">
     330<!ENTITY iproute2-size "642 KB">
    331331<!ENTITY iproute2-url "&kernel;linux/utils/net/iproute2/iproute2-&iproute2-version;.tar.xz">
    332 <!ENTITY iproute2-md5 "b94a2b0edefaeac124dc8f5d006931b9">
     332<!ENTITY iproute2-md5 "7a9498de88bcca95c305df6108ae197e">
    333333<!ENTITY iproute2-home "&kernel;linux/utils/net/iproute2/">
    334334<!ENTITY iproute2-ch6-du "11 MB">
Note: See TracChangeset for help on using the changeset viewer.