Changeset 293bc69 in clfs-embedded for BOOK/cross-tools
- Timestamp:
- Oct 24, 2013, 2:53:46 PM (11 years ago)
- Branches:
- master
- Children:
- 5470f08
- Parents:
- 8ffc8f19
- git-author:
- Andrew Bradford <andrew@…> (10/24/13 14:11:46)
- git-committer:
- Andrew Bradford <andrew@…> (10/24/13 14:53:46)
- Location:
- BOOK/cross-tools/arm
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
BOOK/cross-tools/arm/gcc-final.xml
r8ffc8f19 r293bc69 72 72 --with-mpfr-lib=$(pwd)/mpfr/src/.libs \ 73 73 --with-arch=${CLFS_ARM_ARCH} \ 74 --with-mode=${CLFS_ARM_MODE} \75 74 --with-float=${CLFS_FLOAT} \ 76 75 --with-fpu=${CLFS_FPU}</userinput></screen> -
BOOK/cross-tools/arm/gcc-static.xml
r8ffc8f19 r293bc69 78 78 --with-mpfr-lib=$(pwd)/mpfr/src/.libs \ 79 79 --with-arch=${CLFS_ARM_ARCH} \ 80 --with-mode=${CLFS_ARM_MODE} \81 80 --with-float=${CLFS_FLOAT} \ 82 81 --with-fpu=${CLFS_FPU}</userinput></screen> … … 100 99 <listitem> 101 100 <para>This option sets the ARM architecture selected earlier.</para> 102 </listitem>103 </varlistentry>104 <varlistentry os="ag3">105 <term><parameter>--with-mode=${CLFS_ARM_MODE}</parameter></term>106 <listitem>107 <para>This option sets the ARM mode (arm or thumb) selected earlier.</para>108 101 </listitem> 109 102 </varlistentry> -
BOOK/cross-tools/arm/variables.xml
r8ffc8f19 r293bc69 16 16 set a few variables that will be dependent on your particular needs. 17 17 You will need to select the target triplet for the target architecture, 18 the CPU architecture, the CPU mode, the CPUfloating point hardware18 the CPU architecture, the CPU floating point hardware 19 19 availability, and (if available) the type of floating point hardware. If you 20 20 do not know what values can be chosen for each of these, you can use the … … 35 35 xpointer="xpointer(//*[@os='b'])"/> 36 36 37 <para os="c">Now we will set the architecture of the CPU based 38 on the target triplet provided above:</para> 37 <para os="c">Now set the architecture of the CPU:</para> 39 38 40 39 <screen os="d"><userinput>export CLFS_ARCH=arm</userinput></screen> 41 40 42 <para os="e">Choose the ARM architecture (see table below) and mode of 43 your CPU:</para> 41 <para os="e">Choose the ARM architecture (see table below):</para> 44 42 45 <screen os="f"><userinput>export CLFS_ARM_ARCH="<replaceable>[architecture]</replaceable>" 46 export CLFS_ARM_MODE="<replaceable>[arm or thumb]</replaceable>"</userinput></screen> 43 <screen os="f"><userinput>export CLFS_ARM_ARCH="<replaceable>[architecture]</replaceable>"</userinput></screen> 47 44 48 45 <para os="f1">If your target CPU has hardware floating point support (not all … … 69 66 echo export CLFS_ARCH=\""${CLFS_ARCH}\"" >> ~/.bashrc 70 67 echo export CLFS_ARM_ARCH=\""${CLFS_ARM_ARCH}\"" >> ~/.bashrc 71 echo export CLFS_ARM_MODE=\""${CLFS_ARM_MODE}\"" >> ~/.bashrc72 68 echo export CLFS_FLOAT=\""${CLFS_FLOAT}\"" >> ~/.bashrc 73 69 echo export CLFS_FPU=\""${CLFS_FPU}\"" >> ~/.bashrc</userinput></screen>
Note:
See TracChangeset
for help on using the changeset viewer.