%general-entities; ]> Cross GCC-&gcc-version; - Final GCC cross tools, final Installation of GCC Cross Compiler AR=ar LDFLAGS="-Wl,-rpath,/cross-tools/lib" \ ../gcc-&gcc-version;/configure --prefix=/cross-tools \ --build=${CLFS_HOST} --target=${CLFS_TARGET} --host=${CLFS_HOST} \ --with-sysroot=${CLFS} --with-local-prefix=/tools \ --with-native-system-header-dir=/tools/include --disable-nls \ --disable-static --enable-languages=c,c++ --disable-multilib \ --with-mpc=/cross-tools --with-mpfr=/cross-tools --with-gmp=/cross-tools \ --with-isl=/cross-tools --with-system-zlib The meaning of the new configure options: --enable-languages=c,c++ This option ensures that only the C and C++ compilers are built. Continue with compiling the package: make AS_FOR_TARGET="${CLFS_TARGET}-as" \ LD_FOR_TARGET="${CLFS_TARGET}-ld" Install the package: make install <para>Details on this package are located in <xref linkend="contents-gcc" role="."/></para> </sect2> </sect1>