Changeset 9c14ec2


Ignore:
Timestamp:
08/28/2004 01:27:45 AM (20 years ago)
Author:
Jeremy Utley <jeremy@…>
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.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, 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:
9ae5ef3
Parents:
b3c46bf7
Message:

Experimental Change - Compile glibc against sanitized headers from linux-libc-headers, rather than raw kernel headers

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

Files:
4 edited

Legend:

Unmodified
Added
Removed
  • chapter01/changelog.xml

    rb3c46bf7 r9c14ec2  
    9090</listitem>
    9191
     92<listitem><para>August 27, 2004 [jeremy]: (Experimental) Changed both chapter
     935 and chapter 6 glibc to compile against sanitized headers instead of raw
     94kernel headers - this brings us more in line with what is considered "proper",
     95and should have minimal affect on the build itself.</para></listitem>
     96
    9297<listitem><para>August 27, 2004 [jeremy]: (Experimental) Added -B/usr/bin flag
    9398to GCC Pass 1 to solve possible problem where the host's toolchain is
  • chapter05/chapter05.xml

    rb3c46bf7 r9c14ec2  
    1515<xi:include xmlns:xi="http://www.w3.org/2003/XInclude" href="gcc-pass1.xml"/>
    1616<xi:include xmlns:xi="http://www.w3.org/2003/XInclude" href="linux-libc-headers.xml"/>
     17<!--
    1718<xi:include xmlns:xi="http://www.w3.org/2003/XInclude" href="kernel-headers.xml"/>
     19-->
    1820<xi:include xmlns:xi="http://www.w3.org/2003/XInclude" href="glibc.xml"/>
    1921<xi:include xmlns:xi="http://www.w3.org/2003/XInclude" href="adjusting.xml"/>
  • chapter05/glibc.xml

    rb3c46bf7 r9c14ec2  
    4848    --disable-profile --enable-add-ons=nptl --with-tls \
    4949    --with-__thread --enable-kernel=2.6.0 --with-binutils=/tools/bin \
    50     --without-gd --without-cvs --with-headers=/tools/glibc-kernheaders</userinput></screen>
     50    --without-gd --without-cvs</userinput></screen>
    5151
    5252<para>The meaning of the configure options:</para>
     
    106106suppresses an annoying but harmless warning about a missing
    107107<command>autoconf</command> program.</para></listitem>
    108 </varlistentry>
    109 
    110 <varlistentry>
    111 <term><parameter>--with-headers=/tools/glibc-kernheaders</parameter></term>
    112 <listitem><para>This tells Glibc to compile against the <quote>raw</quote>
    113 kernel headers, so that it knows exactly what features the kernel has, and can
    114 optimize itself accordingly.  Not strictly necessary, but nice to have.</para></listitem>
    115108</varlistentry>
    116109</variablelist>
  • chapter06/glibc.xml

    rb3c46bf7 r9c14ec2  
    5252    --disable-profile --enable-add-ons=nptl --with-tls \
    5353    --with-__thread --enable-kernel=2.6.0 --without-cvs \
    54     --libexecdir=/usr/lib/glibc \
    55     --with-headers=/tools/glibc-kernheaders</userinput></screen>
     54    --libexecdir=/usr/lib/glibc</userinput></screen>
    5655
    5756<para>The meaning of the new configure options:</para>
Note: See TracChangeset for help on using the changeset viewer.