Changeset 5948c803 for chapter05


Ignore:
Timestamp:
08/19/2014 09:37:43 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:
a150b723
Parents:
f1d755b
Message:

Remove redundant options in gcc instructions.
Add note about a test failure in util-linux.

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

File:
1 edited

Legend:

Unmodified
Added
Removed
  • chapter05/gcc-pass2.xml

    rf1d755b r5948c803  
    118118    --with-local-prefix=/tools                       \
    119119    --with-native-system-header-dir=/tools/include   \
    120     --enable-clocale=gnu                             \
    121     --enable-shared                                  \
    122     --enable-threads=posix                           \
    123     --enable-__cxa_atexit                            \
    124120    --enable-languages=c,c++                         \
    125121    --disable-libstdcxx-pch                          \
     
    130126    <variablelist>
    131127      <title>The meaning of the new configure options:</title>
    132 
    133       <varlistentry>
    134         <term><parameter>--enable-clocale=gnu</parameter></term>
    135         <listitem>
    136           <para>This option ensures the correct locale model is selected
    137           for the C++ libraries under all circumstances. If the configure
    138           script finds the <emphasis>de_DE</emphasis> locale installed,
    139           it will select the correct gnu locale model. However, if the
    140           <emphasis>de_DE</emphasis> locale is not installed, there is the
    141           risk of building Application Binary Interface (ABI)-incompatible
    142           C++ libraries because the incorrect generic locale model may be
    143           selected.</para>
    144         </listitem>
    145       </varlistentry>
    146 
    147       <varlistentry>
    148         <term><parameter>--enable-threads=posix</parameter></term>
    149         <listitem>
    150           <para>This enables C++ exception handling for multi-threaded code.</para>
    151         </listitem>
    152       </varlistentry>
    153 
    154       <varlistentry>
    155         <term><parameter>--enable-__cxa_atexit</parameter></term>
    156         <listitem>
    157           <para>This option allows use of <function>__cxa_atexit</function>,
    158           rather than <function>atexit</function>, to register C++ destructors
    159           for local statics and global objects. This option is essential for
    160           fully standards-compliant handling of destructors. It also affects
    161           the C++ ABI, and therefore results in C++ shared libraries and C++
    162           programs that are interoperable with other Linux distributions.</para>
    163         </listitem>
    164       </varlistentry>
    165128
    166129      <varlistentry>
Note: See TracChangeset for help on using the changeset viewer.