Changeset d5c7418 in clfs-embedded


Ignore:
Timestamp:
Feb 9, 2011, 4:47:11 AM (13 years ago)
Author:
Andrew Bradford <bradfa@…>
Branches:
master
Children:
60b91a4
Parents:
7926af1
Message:

Changed BUILD variable name to CLFS_ABI

It better represents what the variable stands for.
It picks the ABI to use when compiling GCC.

Location:
BOOK/cross-tools
Files:
5 edited

Legend:

Unmodified
Added
Removed
  • BOOK/cross-tools/arm/abi.xml

    r7926af1 rd5c7418  
    4949        <row>
    5050          <entry>ABI</entry>
    51           <entry>BUILD=Value</entry>
     51          <entry>CLFS_ABI=Value</entry>
    5252          <entry>Note</entry>
    5353        </row>
  • BOOK/cross-tools/common/abi.xml

    r7926af1 rd5c7418  
    1313  <para os="a" >Setup for a Particular ABI:</para>
    1414
    15 <screen os="b"><userinput>export BUILD="<replaceable>[From Chart]</replaceable>"
    16 echo export BUILD=\""${BUILD}\"" &gt;&gt; ~/.bashrc</userinput></screen>
     15<screen os="b"><userinput>export CLFS_ABI="<replaceable>[From Chart]</replaceable>"
     16echo export CLFS_ABI=\""${CLFS_ABI}\"" &gt;&gt; ~/.bashrc</userinput></screen>
    1717
    1818  <para os="c">The following table gives the entires for the different ABI's
     
    2020  will ensure capatibilty of your build with your target architecture.</para>
    2121
    22   <table>
    23     <title>List of Build Variables</title>
    24     <?dbfo table-width="3in" ?>
    25 
    26     <tgroup cols="2">
    27 
    28       <colspec colnum="1" colwidth="1.5in" colname="ABI to Select"/>
    29       <colspec colnum="2" colwidth="1.5in" colname="Variable Value"/>
    30 
    31       <thead>
    32         <row>
    33           <entry>ABI</entry>
    34           <entry>BUILD=Value</entry>
    35         </row>
    36       </thead>
    37 
    38       <tbody>
    39         <row>
    40           <entry>32-Bit for x86 and x86_64</entry>
    41           <entry>-m32</entry>
    42         </row>
    43         <row>
    44           <entry>64-Bit for x86_64 only</entry>
    45           <entry>-m64</entry>
    46         </row>
    47       </tbody>
    48 
    49     </tgroup>
    50 
    51   </table>
    5222
    5323</sect1>
  • BOOK/cross-tools/common/gcc-final.xml

    r7926af1 rd5c7418  
    4141  --enable-languages=c --enable-c99 --enable-long-long \
    4242  --with-mpfr=${CLFS}/cross-tools --with-gmp=${CLFS}/cross-tools \
    43   --with-mpc=${CLFS}/cross-tools --with-abi=${BUILD}</userinput></screen>
     43  --with-mpc=${CLFS}/cross-tools --with-abi=${CLFS_ABI}</userinput></screen>
    4444
    4545    <variablelist os="af">
  • BOOK/cross-tools/common/gcc-static.xml

    r7926af1 rd5c7418  
    4444  --disable-decimal-float --disable-libgomp --disable-libmudflap \
    4545  --disable-libssp --disable-threads --enable-languages=c \
    46   --with-abi=${BUILD}</userinput></screen>
     46  --with-abi=${CLFS_ABI}</userinput></screen>
    4747
    4848    <variablelist os="af">
     
    208208
    209209      <varlistentry os="af19">
    210         <term><parameter>--with-abi=${BUILD}</parameter></term>
     210        <term><parameter>--with-abi=${CLFS_ABI}</parameter></term>
    211211        <listitem>
    212212          <para>This option sets the ABI selected earlier.</para>
  • BOOK/cross-tools/mips/abi.xml

    r7926af1 rd5c7418  
    3535        <row>
    3636          <entry>ABI</entry>
    37           <entry>BUILD=Value</entry>
     37          <entry>CLFS_ABI=Value</entry>
    3838        </row>
    3939      </thead>
Note: See TracChangeset for help on using the changeset viewer.