Changeset d785e9d for BOOK/cross-tools


Ignore:
Timestamp:
May 1, 2014, 1:06:01 AM (10 years ago)
Author:
Chris Staub <chris@…>
Branches:
clfs-3.0.0-systemd, clfs-3.0.0-sysvinit, master, systemd, sysvinit
Children:
37957f4
Parents:
5cd8d92
Message:

Standardize capitalization of Glibc

Location:
BOOK/cross-tools
Files:
7 edited

Legend:

Unmodified
Added
Removed
  • BOOK/cross-tools/64/glibc.xml

    r5cd8d92 rd785e9d  
    99  <?dbhtml filename="glibc.html"?>
    1010
    11   <title>GLIBC-&glibc-version;</title>
     11  <title>Glibc-&glibc-version;</title>
    1212
    1313  <indexterm zone="ch-cross-tools-glibc">
    14     <primary sortas="a-GLIBC">GLIBC</primary>
     14    <primary sortas="a-Glibc">Glibc</primary>
    1515    <secondary>cross tools</secondary>
    1616  </indexterm>
     
    2121
    2222  <sect2 role="installation">
    23     <title>Installation of GLIBC</title>
     23    <title>Installation of Glibc</title>
    2424
    2525    <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
  • BOOK/cross-tools/common/glibc.xml

    r5cd8d92 rd785e9d  
    99  <?dbhtml filename="glibc.html"?>
    1010
    11   <title>GLIBC-&glibc-version;</title>
     11  <title>Glibc-&glibc-version;</title>
    1212
    1313  <indexterm zone="ch-cross-tools-glibc">
    14     <primary sortas="a-GLIBC">GLIBC</primary>
     14    <primary sortas="a-Glibc">Glibc</primary>
    1515    <secondary>cross tools</secondary>
    1616  </indexterm>
     
    2121
    2222  <sect2 role="installation">
    23     <title>Installation of GLIBC</title>
     23    <title>Installation of Glibc</title>
    2424
    25     <para os="da">It should be noted that compiling GLIBC in any way other than
     25    <para os="da">It should be noted that compiling Glibc in any way other than
    2626    the method suggested in this book puts the stability of the system at
    2727    risk.</para>
     
    4343
    4444    <para os="dd">Add the following to <filename>config.cache</filename>
    45     to disable ssp when building GLIBC:</para>
     45    to disable ssp when building Glibc:</para>
    4646
    4747<screen os="de"><userinput>echo "libc_cv_ssp=no" &gt; config.cache</userinput></screen>
     
    6666        <term><parameter>BUILD_CC="gcc"</parameter></term>
    6767        <listitem>
    68           <para>This sets GLIBC to use the current compiler on our system. This is
    69           used to create the tools GLIBC uses during its build.</para>
     68          <para>This sets Glibc to use the current compiler on our system. This is
     69          used to create the tools Glibc uses during its build.</para>
    7070        </listitem>
    7171      </varlistentry>
     
    7474        <term><parameter>CC="${CLFS_TARGET}-gcc"</parameter></term>
    7575        <listitem>
    76           <para>This forces GLIBC to use the GCC compiler that we made for our target
     76          <para>This forces Glibc to use the GCC compiler that we made for our target
    7777          architecture.</para>
    7878        </listitem>
     
    8282        <term><parameter>AR="${CLFS_TARGET}-ar"</parameter></term>
    8383        <listitem>
    84           <para>This forces GLIBC to use the <command>ar</command> utility
     84          <para>This forces Glibc to use the <command>ar</command> utility
    8585          we made for our target architecture.</para>
    8686        </listitem>
     
    9090        <term><parameter>RANLIB="${CLFS_TARGET}-ranlib"</parameter></term>
    9191        <listitem>
    92           <para>This forces GLIBC to use the <command>ranlib</command> utility
     92          <para>This forces Glibc to use the <command>ranlib</command> utility
    9393          we made for our target architecture.</para>
    9494        </listitem>
     
    106106        <term><parameter>--with-tls</parameter></term>
    107107        <listitem>
    108           <para>This tells GLIBC to use Thread Local Storage.</para>
     108          <para>This tells Glibc to use Thread Local Storage.</para>
    109109        </listitem>
    110110      </varlistentry>
     
    113113        <term><parameter>--enable-kernel=2.6.32</parameter></term>
    114114        <listitem>
    115           <para>This tells GLIBC to compile the library with support
     115          <para>This tells Glibc to compile the library with support
    116116          for 2.6.32 and later Linux kernels.</para>
    117117        </listitem>
     
    121121        <term><parameter>--with-__thread</parameter></term>
    122122        <listitem>
    123           <para>This tells GLIBC to use use the __thread for libc and
     123          <para>This tells Glibc to use use the __thread for libc and
    124124          libpthread builds.</para>
    125125        </listitem>
     
    129129        <term><parameter>--with-binutils=/cross-tools/bin</parameter></term>
    130130        <listitem>
    131           <para>This tells GLIBC to use the Binutils that are specific to
     131          <para>This tells Glibc to use the Binutils that are specific to
    132132          our target architecture.</para>
    133133        </listitem>
     
    137137        <term><parameter>--with-headers=/tools/include</parameter></term>
    138138        <listitem>
    139           <para>This tells GLIBC to compile itself against the headers
     139          <para>This tells Glibc to compile itself against the headers
    140140          recently installed to the <filename class="directory">/tools</filename>
    141141          directory, so that it knows exactly what features the kernel has
     
    147147        <term><parameter>--enable-obsolete-rpc</parameter></term>
    148148        <listitem>
    149           <para>This tells GLIBC to install rpc headers that are not installed
     149          <para>This tells Glibc to install rpc headers that are not installed
    150150          by default but may be needed by other packages.</para>
    151151        </listitem>
     
    155155        <term><parameter>--cache-file=config.cache</parameter></term>
    156156        <listitem>
    157           <para>This tells GLIBC to utilize a premade cache file.</para>
     157          <para>This tells Glibc to utilize a premade cache file.</para>
    158158        </listitem>
    159159      </varlistentry>
  • BOOK/cross-tools/mips64/glibc-n32.xml

    r5cd8d92 rd785e9d  
    99  <?dbhtml filename="glibc-n32.html"?>
    1010
    11   <title>GLIBC-&glibc-version; N32</title>
     11  <title>Glibc-&glibc-version; N32</title>
    1212
    1313  <indexterm zone="ch-cross-tools-glibc-n32">
    14     <primary sortas="a-GLIBC">GLIBC</primary>
     14    <primary sortas="a-Glibc">Glibc</primary>
    1515    <secondary>cross tools, N32</secondary>
    1616  </indexterm>
     
    2121
    2222  <sect2 role="installation">
    23     <title>Installation of GLIBC</title>
     23    <title>Installation of Glibc</title>
    2424
    2525    <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
     
    5151    xpointer="xpointer(//*[@os='de'])"/>
    5252
    53     <para os="n1">Tell GLIBC to install its 32-bit libraries into <filename
     53    <para os="n1">Tell Glibc to install its 32-bit libraries into <filename
    5454    class="directory">/tools/lib32</filename>:</para>
    5555
     
    7474        <term><parameter>CC="${CLFS_TARGET}-gcc ${BUILDN32}"</parameter></term>
    7575        <listitem>
    76           <para>Forces GLIBC to utilize our target architecture GCC utilizing
     76          <para>Forces Glibc to utilize our target architecture GCC utilizing
    7777          the N32 flags.</para>
    7878        </listitem>
     
    8282        <term><parameter>--libdir=/tools/lib32</parameter></term>
    8383        <listitem>
    84           <para>Installs GLIBC into /tools/lib32 instead of /tools/lib.</para>
     84          <para>Installs Glibc into /tools/lib32 instead of /tools/lib.</para>
    8585        </listitem>
    8686      </varlistentry>
  • BOOK/cross-tools/multilib/glibc-64bit.xml

    r5cd8d92 rd785e9d  
    99  <?dbhtml filename="glibc-64.html"?>
    1010
    11   <title>GLIBC-&glibc-version; 64-Bit</title>
     11  <title>Glibc-&glibc-version; 64-Bit</title>
    1212
    1313  <indexterm zone="ch-cross-tools-glibc-64">
    14     <primary sortas="a-GLIBC">GLIBC</primary>
     14    <primary sortas="a-Glibc">Glibc</primary>
    1515    <secondary>cross tools, 64 Bit</secondary>
    1616  </indexterm>
     
    2121
    2222  <sect2 role="installation">
    23     <title>Installation of GLIBC</title>
     23    <title>Installation of Glibc</title>
    2424
    2525    <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
     
    5151    xpointer="xpointer(//*[@os='de'])"/>
    5252
    53     <para os="n1">Tell GLIBC to install its 64-bit libraries into <filename
     53    <para os="n1">Tell Glibc to install its 64-bit libraries into <filename
    5454    class="directory">/tools/lib64</filename>:</para>
    5555
     
    7474        <term><parameter>CC="${CLFS_TARGET}-gcc ${BUILD64}"</parameter></term>
    7575        <listitem>
    76           <para>Forces GLIBC to build using our target architecture GCC
     76          <para>Forces Glibc to build using our target architecture GCC
    7777          utilizing the 64 Bit flags.</para>
    7878        </listitem>
     
    8282        <term><parameter>--libdir=/tools/lib64</parameter></term>
    8383        <listitem>
    84           <para>Puts GLIBC into /tools/lib64 instead of /tools/lib.</para>
     84          <para>Puts Glibc into /tools/lib64 instead of /tools/lib.</para>
    8585        </listitem>
    8686      </varlistentry>
  • BOOK/cross-tools/multilib/glibc.xml

    r5cd8d92 rd785e9d  
    99  <?dbhtml filename="glibc.html"?>
    1010
    11   <title>GLIBC-&glibc-version; 32 Bit</title>
     11  <title>Glibc-&glibc-version; 32 Bit</title>
    1212
    1313  <indexterm zone="ch-cross-tools-glibc">
    14     <primary sortas="a-GLIBC">GLIBC</primary>
     14    <primary sortas="a-Glibc">Glibc</primary>
    1515    <secondary>cross tools, 32 Bit</secondary>
    1616  </indexterm>
     
    2121
    2222  <sect2 role="installation">
    23     <title>Installation of GLIBC</title>
     23    <title>Installation of Glibc</title>
    2424
    2525    <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
     
    7373        <term><parameter>CC="${CLFS_TARGET}-gcc ${BUILD32}"</parameter></term>
    7474        <listitem>
    75           <para>Forces GLIBC to utilize our target architecture GCC utilizing
     75          <para>Forces Glibc to utilize our target architecture GCC utilizing
    7676          the 32 Bit flags.</para>
    7777        </listitem>
  • BOOK/cross-tools/sparc64-64/glibc.xml

    r5cd8d92 rd785e9d  
    99  <?dbhtml filename="glibc.html"?>
    1010
    11   <title>GLIBC-&glibc-version;</title>
     11  <title>Glibc-&glibc-version;</title>
    1212
    1313  <indexterm zone="ch-cross-tools-glibc">
    14     <primary sortas="a-GLIBC">GLIBC</primary>
     14    <primary sortas="a-Glibc">Glibc</primary>
    1515    <secondary>cross tools</secondary>
    1616  </indexterm>
     
    2121
    2222  <sect2 role="installation">
    23     <title>Installation of GLIBC</title>
     23    <title>Installation of Glibc</title>
    2424
    2525    <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
  • BOOK/cross-tools/sparc64/glibc-64bit.xml

    r5cd8d92 rd785e9d  
    99  <?dbhtml filename="glibc-64.html"?>
    1010
    11   <title>GLIBC-&glibc-version; 64-Bit</title>
     11  <title>Glibc-&glibc-version; 64-Bit</title>
    1212
    1313  <indexterm zone="ch-cross-tools-glibc-64">
    14     <primary sortas="a-GLIBC">GLIBC</primary>
     14    <primary sortas="a-Glibc">Glibc</primary>
    1515    <secondary>cross tools, 64 Bit</secondary>
    1616  </indexterm>
     
    2121
    2222  <sect2 role="installation">
    23     <title>Installation of GLIBC</title>
     23    <title>Installation of Glibc</title>
    2424
    2525    <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
Note: See TracChangeset for help on using the changeset viewer.