Changeset c90f09c


Ignore:
Timestamp:
09/18/2001 04:10:35 PM (23 years ago)
Author:
Gerard Beekmans <gerard@…>
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, 6.0, 6.1, 6.1.1, 6.3, 6.4, 6.5, 6.6, 6.7, 6.8, 7.0, 7.1, 7.2, 7.3, 7.4, 7.5, 7.5-systemd, 7.6, 7.6-systemd, 7.7, 7.7-systemd, 7.8, 7.8-systemd, 7.9, 7.9-systemd, 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, v3_0, v3_1, v3_2, v3_3, v4_0, v4_1, v5_0, v5_1, v5_1_1, 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:
069740f
Parents:
6d8aa0e
Message:

added --enable-threads=posix to chapter 5-gcc, updated chapter 6 from
--enable-threads to --enable-threads=posix (for clarity, since posix is the
default).

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

Files:
1 deleted
6 edited

Legend:

Unmodified
Added
Removed
  • chapter01/changelog.xml

    r6d8aa0e rc90f09c  
    1515
    1616</para></listitem>
     17
     18<listitem><para>September 18th, 2001 [gerard]: Chapter 5+6 - GCC:
     19Added --enable-threads=posix to chapter 5, and changed --enable-threads to
     20--enable-threads=posix in chapter 6. Although the default is posix threads when
     21not specified, it's clearer this way what's being enabled.</para></listitem>
    1722
    1823<listitem><para>September 17th, 2001 [gerard]: Chapter 6 - Psmisc:
  • chapter05/gcc-exp.xml

    r6d8aa0e rc90f09c  
    2121the --enable-languages parameter can be omitted.</para>
    2222
     23<para><userinput>--enable-threads=posix:</userinput> This enables C++
     24exception handling for multithreaded code.</para>
     25
    2326<para><userinput>ln -sf ../usr/bin/cpp:</userinput> This
    2427creates the $LFS/lib/cpp symlink. Some packages explicitly try to find
  • chapter05/gcc-inst.xml

    r6d8aa0e rc90f09c  
    1414<userinput>cd ../gcc-build &amp;&amp;</userinput>
    1515<userinput>../gcc-&gcc-version;/configure --prefix=/usr --enable-languages=c,c++ \</userinput>
    16 <userinput>&nbsp;&nbsp;&nbsp;--disable-nls --disable-shared &amp;&amp;</userinput>
     16<userinput>&nbsp;&nbsp;&nbsp;--disable-nls --disable-shared --enable-threads=posix &amp;&amp;</userinput>
    1717<userinput>make BOOT_LDFLAGS=-static bootstrap &amp;&amp;</userinput>
    1818<userinput>make prefix=$LFS/usr install &amp;&amp;</userinput>
  • chapter06/gcc-inst.xml

    r6d8aa0e rc90f09c  
    2222<userinput>cd ../gcc-build &amp;&amp;</userinput>
    2323<userinput>../gcc-&gcc-version;/configure --prefix=/usr --enable-shared \</userinput>
    24 <userinput>&nbsp;&nbsp;&nbsp;--enable-languages=c,c++ --enable-threads &amp;&amp;</userinput>
     24<userinput>&nbsp;&nbsp;&nbsp;--enable-languages=c,c++ --enable-threads=posix &amp;&amp;</userinput>
    2525<userinput>make bootstrap &amp;&amp;</userinput>
    2626<userinput>make install</userinput></screen></para>
  • chapter06/gcc.xml

    r6d8aa0e rc90f09c  
    66
    77&c6-gcc-inst;
    8 &c6-gcc-exp;
    98&aa-gcc-desc;
    109&ab-gcc-dep;
  • index.xml

    r6d8aa0e rc90f09c  
    201201<!ENTITY c6-patch-inst SYSTEM "chapter6/patch-inst.xml">
    202202<!ENTITY c6-gcc SYSTEM "chapter6/gcc.xml">
    203 <!ENTITY c6-gcc-exp SYSTEM "chapter6/gcc-exp.xml">
    204203<!ENTITY c6-gcc-inst SYSTEM "chapter6/gcc-inst.xml">
    205204<!ENTITY c6-bison SYSTEM "chapter6/bison.xml">
Note: See TracChangeset for help on using the changeset viewer.