Ignore:
Timestamp:
03/28/2013 05:38:55 PM (11 years ago)
Author:
Matthew Burgess <matthew@…>
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.4, 7.5, 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:
01674d0f
Parents:
12b39de
Message:

Upgrade to GCC-4.8.0. Fixes #3312.

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

File:
1 edited

Legend:

Unmodified
Added
Removed
  • chapter05/gcc-pass1.xml

    r12b39de r908077d  
    132132    --disable-decimal-float    \
    133133    --disable-threads          \
     134    --disable-libatomic        \
     135    --disable-libgomp          \
     136    --disable-libitm           \
    134137    --disable-libmudflap       \
     138    --disable-libquadmath      \
     139    --disable-libsanitizer     \
    135140    --disable-libssp           \
    136     --disable-libgomp          \
    137     --disable-libquadmath      \
    138     --enable-languages=c       \
     141    --disable-libstdc++-v3     \
     142    --enable-languages=c,c++   \
    139143    --with-mpfr-include=$(pwd)/../gcc-&gcc-version;/mpfr/src \
    140144    --with-mpfr-lib=$(pwd)/mpfr/src/.libs</userinput></screen>
     
    194198
    195199      <varlistentry>
    196         <term><parameter>--disable-decimal-float, --disable-threads, --disable-libmudflap, --disable-libssp, --disable-libgomp, --disable-libquadmath</parameter></term>
     200        <term><parameter>--disable-decimal-float, --disable-threads,
     201        --disable-libatomic, --disable-libgomp, --disable-libitm,
     202        --disable-libmudflap, --disable-libquadmath, --disable-libsanitizer,
     203        --disable-libssp, --disable-libstdc++-v3</parameter></term>
    197204        <listitem>
    198205          <para>These switches disable support for the decimal floating point
    199           extension, threading, libmudflap, libssp and libgomp and libquadmath
     206          extension, threading, libatomic, libgomp, libitm, libmudflap,
     207          libquadmath, libsanitizer, libssp and the C++ standard library
    200208          respectively. These features will fail to compile when building a
    201209          cross-compiler and are not necessary for the task of cross-compiling
     
    213221
    214222      <varlistentry>
    215         <term><parameter>--enable-languages=c</parameter></term>
    216         <listitem>
    217           <para>This option ensures that only the C compiler is built.
    218           This is the only language needed now.</para>
     223        <term><parameter>--enable-languages=c,c++</parameter></term>
     224        <listitem>
     225          <para>This option ensures that only the C and C++ compilers are built.
     226          These are the only languages needed now.</para>
    219227        </listitem>
    220228      </varlistentry>
Note: See TracChangeset for help on using the changeset viewer.