Changeset 8520e58 in clfs-embedded for BOOK/cross-tools


Ignore:
Timestamp:
Nov 22, 2006, 9:44:58 PM (17 years ago)
Author:
Jim Gifford <clfs@…>
Branches:
master
Children:
83ea4ad
Parents:
3466794
Message:

Text Updates for CLFS Embedded

Location:
BOOK/cross-tools
Files:
2 added
4 edited
1 moved

Legend:

Unmodified
Added
Removed
  • BOOK/cross-tools/common/toolchain.xml

    r3466794 r8520e58  
    66]>
    77
    8 <sect1 id="ch-system-variables">
    9   <?dbhtml filename="variables.html"?>
     8<sect1 id="ch-cross-tools-toolchain">
     9  <?dbhtml filename="toolchain.html"?>
    1010
    11   <title>Build Variables</title>
     11  <title>ToolChain Variables</title>
    1212
    13   <para>Setup target-specific variables for the compiler
    14   and linkers:</para>
     13  <para>We set this up just for uClibc build, we will remove
     14  these after we that build. We will reitroduce them in
     15  then Final System build:</para>
    1516
    16 <screen><userinput>cat &gt; ~/.bash_profile &lt;&lt; "EOF"
    17 <literal>export CC="${CLFS_TARGET}-gcc"
     17<screen><userinput><literal>export CC="${CLFS_TARGET}-gcc"
    1818export CXX="${CLFS_TARGET}-g++"
    1919export AR="${CLFS_TARGET}-ar"
    2020export AS="${CLFS_TARGET}-as"
     21export LD="${CLFS_TARGET}-ld"
    2122export RANLIB="${CLFS_TARGET}-ranlib"
    22 export LD="${CLFS_TARGET}-ld"
    23 export STRIP="${CLFS_TARGET}-strip"</literal>
    24 EOF
    25 source ~/.bashrc
    26 </userinput></screen>
     23export STRIP="${CLFS_TARGET}-strip"</literal></userinput></screen>
    2724
    2825</sect1>
  • BOOK/cross-tools/mips-chapter.xml

    r3466794 r8520e58  
    1919  <xi:include xmlns:xi="http://www.w3.org/2003/XInclude" href="common/binutils.xml"/>
    2020  <xi:include xmlns:xi="http://www.w3.org/2003/XInclude" href="common/gcc-static.xml"/>
     21  <xi:include xmlns:xi="http://www.w3.org/2003/XInclude" href="common/toolchain.xml"/>
    2122  <xi:include xmlns:xi="http://www.w3.org/2003/XInclude" href="mips/uclibc.xml"/>
     23  <xi:include xmlns:xi="http://www.w3.org/2003/XInclude" href="common/clear-toolchain.xml"/>
    2224  <xi:include xmlns:xi="http://www.w3.org/2003/XInclude" href="common/gcc-final.xml"/>
    2325
  • BOOK/cross-tools/mips/uclibc.xml

    r3466794 r8520e58  
    9595  xpointer="xpointer(//*[@os='n'])"/>
    9696
    97 <screen os="o"><userinput>make TARGET_ARCH=mips</userinput></screen>
     97<screen os="o"><userinput>make CC="${CC} ${BUILD}" TARGET_ARCH=mips</userinput></screen>
    9898
    9999  <xi:include xmlns:xi="http://www.w3.org/2003/XInclude"
  • BOOK/cross-tools/x86-chapter.xml

    r3466794 r8520e58  
    1919  <xi:include xmlns:xi="http://www.w3.org/2003/XInclude" href="common/binutils.xml"/>
    2020  <xi:include xmlns:xi="http://www.w3.org/2003/XInclude" href="common/gcc-static.xml"/>
     21  <xi:include xmlns:xi="http://www.w3.org/2003/XInclude" href="common/toolchain.xml"/>
    2122  <xi:include xmlns:xi="http://www.w3.org/2003/XInclude" href="x86/uclibc.xml"/>
     23  <xi:include xmlns:xi="http://www.w3.org/2003/XInclude" href="common/clear-toolchain.xml"/>
    2224  <xi:include xmlns:xi="http://www.w3.org/2003/XInclude" href="common/gcc-final.xml"/>
    2325
  • BOOK/cross-tools/x86/uclibc.xml

    r3466794 r8520e58  
    8282    <para os="n">Compile the package:</para>
    8383
    84 <screen os="o"><userinput>make TARGET_ARCH=i386</userinput></screen>
     84<screen os="o"><userinput>make CC="${CC} ${BUILD}" TARGET_ARCH=i386</userinput></screen>
    8585
    8686   <para os="p">The uClibc build system creates symlinks in its
Note: See TracChangeset for help on using the changeset viewer.