Changeset d3757f1c for general


Ignore:
Timestamp:
09/06/2013 03:07:58 AM (11 years ago)
Author:
Bruce Dubbs <bdubbs@…>
Branches:
10.0, 10.1, 11.0, 11.1, 11.2, 11.3, 12.0, 12.1, 7.10, 7.4, 7.5, 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:
05ce77a
Parents:
333a1738
Message:

Tag and adjust gcc instructions for 7.4

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

File:
1 edited

Legend:

Unmodified
Added
Removed
  • general/prog/gcc.xml

    r333a1738 rd3757f1c  
    4545    than the one provided by <application>GCC</application>.</para>
    4646
    47     &lfs73_checked;
     47    &lfs74_checked;
    4848
    4949    <caution>
     
    204204cd    ../gcc-build &amp;&amp;
    205205
    206 ../gcc-&gcc-version;/configure         \
    207     --prefix=/usr              \
    208     --libdir=/usr/lib          \
    209     --libexecdir=/usr/lib      \
    210     --with-system-zlib         \
    211     --enable-shared            \
    212     --enable-threads=posix     \
    213     --enable-__cxa_atexit      \
    214     --disable-multilib         \
    215     --enable-clocale=gnu       \
    216     --enable-lto               \
     206../gcc-&gcc-version;/configure          \
     207    --prefix=/usr               \
     208    --libdir=/usr/lib           \
     209    --libexecdir=/usr/lib       \
     210    --enable-shared             \
     211    --enable-threads=posix      \
     212    --enable-__cxa_atexit       \
     213    --disable-multilib          \
     214    --disable-bootstrap         \
     215    --disable-install-libiberty \
     216    --with-system-zlib          \
     217    --enable-clocale=gnu        \
     218    --enable-lto                \
    217219    --enable-languages=c,c++,fortran,ada,go,java,objc,obj-c++ &amp;&amp;
    218 
    219 make            &amp;&amp;
     220make
     221</userinput></screen>
     222
     223    <para>If you have installed additional packages such as valgrind and gdb,
     224    the gcc part of the testsuite will run more tests than in LFS.
     225    Some of those will report FAIL and others XPASS (pass when expected
     226    to FAIL).  To run the checks:</para>
     227
     228<screen><userinput>
    220229ulimit -s 32768 &amp;&amp;
    221230make -k check   &amp;&amp;
Note: See TracChangeset for help on using the changeset viewer.