%general-entities; ]> uClibc-&uclibc-version; uClibc cross tools Installation of uClibc Since we are cross-compiling, we need to make sure when we configuration for our architecture we get the correct information. The following sed makes sure we are using the proper settings for our architecture: cp extra/Configs/Config.arm extra/Configs/Config.arm.orig sed -e "/default/s:OABI:EABI:" \ extra/Configs/Config.arm.orig > extra/Configs/Config.arm make defconfig ARCH=arm If your ARM system is Big Endian, you will need at add the following lines to your configuration: echo "ARCH_ANY_ENDIAN=y" >> .config echo "ARCH_BIG_ENDIAN=y" >> .config echo "ARCH_WANTS_BIG_ENDIAN=y" >> .config If your ARM system is Little Endian, you will need at add the following lines to your configuration: echo "ARCH_ANY_ENDIAN=y" >> .config echo "ARCH_LITTLE_ENDIAN=y" >> .config echo "ARCH_WANTS_LITTLE_ENDIAN=y" >> .config make oldconfig <para>Details on this package are located in <xref linkend="contents-uclibc" role="."/></para> </sect2> </sect1>