%general-entities; ]> Glibc-&glibc-version; N32 Glibc cross tools, N32 Installation of Glibc Now we make sure the Glibc goes into /tools/lib32: echo "slibdir=/tools/lib32" >> configparms BUILD_CC="gcc" CC="${LFS_TARGET}-gcc ${BUILDN32}" \ AR="${LFS_TARGET}-ar" RANLIB="${LFS_TARGET}-ranlib" \ ../glibc-&glibc-version;/configure --prefix=/tools \ --host=${LFS_TARGET} --build=${LFS_HOST} --libdir=/tools/lib32 \ --disable-profile --enable-add-ons \ --with-tls --enable-kernel=2.6.0 --with-__thread \ --with-binutils=/cross-tools/bin --with-headers=/tools/include \ --cache-file=config.cache The meaning of the new configure options: CC="${LFS_TARGET}-gcc ${BUILDN32}" Forces Glibc to utilize our target architecture GCC utilizing the N32 flags. --libdir=/tools/lib32 Installs Glibc into /tools/lib32 instead of /tools/lib. <para>Details on this package are located in <xref linkend="contents-glibc" role="."/></para> </sect2> </sect1>