- Timestamp:
- Feb 21, 2011, 12:37:57 PM (14 years ago)
- Branches:
- master
- Children:
- e1ec8ed
- Parents:
- 8a7de9f
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
BOOK/cross-tools/arm/uclibc.xml
r8a7de9f r3b3960b 40 40 <para os="d">For the ARM architecture, there are two different configurations 41 41 of uClibc that can be used: the EABI configuration and the OABI configuration. 42 We will copy the one that corresponds with the $CLFS_ABI choice made earlier43 and use that as the base:</para>42 We will first copy the OABI configuration and, if the EABI was selected, modify 43 it to use the EABI:</para> 44 44 45 <screen os="e"><userinput> if [ "${CLFS_ABI}" == "aapcs" ] || [ "${CLFS_ABI}" == "aapcs-linux" ]; \46 then cp -v clfs/config.${CLFS_ARCH}.${CLFS_ENDIAN}.EABI .config; \47 else cp -v clfs/config.${CLFS_ARCH}.${CLFS_ENDIAN}.config; fi</userinput></screen>45 <screen os="e"><userinput>cp -v clfs/config.${CLFS_ARCH}.${CLFS_ENDIAN} .config 46 if [ "${CLFS_ABI}" == "aapcs" ] || [ "${CLFS_ABI}" == "aapcs-linux" ]; \ 47 then sed -i s/CONFIG_ARM_OABI/CONFIG_ARM_EABI/g .config; fi</userinput></screen> 48 48 49 49 <xi:include xmlns:xi="http://www.w3.org/2003/XInclude"
Note:
See TracChangeset
for help on using the changeset viewer.