Changeset b10cfc81


Ignore:
Timestamp:
04/29/2014 10:33:31 AM (10 years ago)
Author:
Pierre Labastie <pieere@…>
Branches:
10.0, 10.1, 11.0, 11.1, 11.2, 11.3, 12.0, 12.1, 7.10, 7.6, 7.6-blfs, 7.6-systemd, 7.7, 7.8, 7.9, 8.0, 8.1, 8.2, 8.3, 8.4, 9.0, 9.1, basic, bdubbs/svn, elogind, gnome, kde5-13430, kde5-14269, kde5-14686, kea, ken/TL2024, ken/inkscape-core-mods, ken/tuningfonts, krejzi/svn, lazarus, lxqt, nosym, perl-modules, plabs/newcss, plabs/python-mods, python3.11, qt5new, rahul/power-profiles-daemon, renodr/vulkan-addition, systemd-11177, systemd-13485, trunk, upgradedb, xry111/intltool, xry111/llvm18, xry111/soup3, xry111/test-20220226, xry111/xf86-video-removal
Children:
3844cf2
Parents:
eb631ac
Message:

Remove unneeded switches for GCC compilation antidy up tests instruction

git-svn-id: svn://svn.linuxfromscratch.org/BLFS/trunk/BOOK@13008 af4574ff-66df-0310-9fd7-8a98e5e911e0

Files:
2 edited

Legend:

Unmodified
Added
Removed
  • general/prog/gcc.xml

    reb631ac rb10cfc81  
    196196sed -i 's/\(install-data-am:\).*/\1/'             libffi/include/Makefile.in &amp;&amp;
    197197
     198<!-- fomit-frame-pointer is the defaults since GCC-4.6
    198199case `uname -m` in
    199200      i?86) sed -i 's/^T_CFLAGS =$/&amp; -fomit-frame-pointer/' gcc/Makefile.in ;;
    200201esac &amp;&amp;
    201 
    202 <!--sed -i -e /autogen/d -e /check.sh/d fixincludes/Makefile.in
     202--><!-- Those are not needed anymore:
     203sed -i -e /autogen/d -e /check.sh/d fixincludes/Makefile.in
    203204mv -v libmudflap/testsuite/libmudflap.c++/pass41-frag.cxx{,.disable}
    204205-->
     
    225226
    226227<screen><userinput>ulimit -s 32768 &amp;&amp;
    227 make -k check   &amp;&amp;
    228 
    229 ../gcc-&gcc-version;/contrib/test_summary</userinput></screen>
     228make -k check</userinput></screen>
     229<!-- The command above may error out, so using && may prevent the summary
     230to be run. -->
     231
     232    <para>The tests are very long, and the results may be hard to find in the
     233    logs, specially if you use job control with make. You can get a summary
     234    of the tests with:</para>
     235
     236<screen><userinput>../gcc-&gcc-version;/contrib/test_summary</userinput></screen>
    230237
    231238    <para>Now, as the <systemitem class="username">root</systemitem> user:</para>
     
    255262    <title>Command Explanations</title>
    256263
    257     <para>The first two <command>sed</command> commands prevent the
     264    <para>The two <command>sed</command> commands prevent the
    258265    installation of the <application>libffi</application> library bundled
    259266    with <application>GCC</application>, since it is outdated compared to
    260     <xref linkend="libffi"/>. The following three commands are the same
    261     ones used during the build of LFS.</para>
     267    <xref linkend="libffi"/>.</para>
    262268
    263269    <para><command>mkdir ../gcc-build; cd ../gcc-build</command>: The
  • introduction/welcome/changelog.xml

    reb631ac rb10cfc81  
    4949      <itemizedlist>
    5050        <listitem>
     51          <para>[pierre] - Remove unneeded flags for compiling GCC-4.9.0
     52          and correct test instructions.</para>
     53        </listitem>
     54        <listitem>
    5155          <para>[pierre] - Update to GCC-4.9.0. Fixes
    5256          <ulink url="&blfs-ticket-root;4986">#4986</ulink>.</para>
Note: See TracChangeset for help on using the changeset viewer.