# HG changeset patch # User Ray Donnelly # Date 1391499645 0 # Node ID bddc642fc8eb82c4eb8f5962f7be680d09e7b6a0 # Parent defadbff9afd3ab8218d302a917c16d3d99947fb binutils: Added ranlib to tools list so that it is available to available to the core C compiler build because static libraries are built and ranlib is used on them. Signed-off-by: Ray Donnelly Message-Id: Patchwork-Id: 316477 diff -r defadbff9afd -r bddc642fc8eb scripts/build/binutils/binutils.sh --- a/scripts/build/binutils/binutils.sh Wed Feb 19 22:36:03 2014 +0100 +++ b/scripts/build/binutils/binutils.sh Tue Feb 04 07:40:45 2014 +0000 @@ -106,13 +106,13 @@ fi # Make those new tools available to the core C compilers to come. - # Note: some components want the ${TARGET}-{ar,as,ld,strip} commands as - # well. Create that. + # Note: some components want the ${TARGET}-{ar,as,ld,ranlib,strip} commands + # as well. Create that. # Don't do it for canadian or cross-native, because the binutils # are not executable on the build machine. case "${CT_TOOLCHAIN_TYPE}" in cross|native) - binutils_tools=( ar as ld strip ) + binutils_tools=( ar as ld ranlib strip ) if [ -n "${CT_ARCH_BINFMT_FLAT}" ]; then binutils_tools+=( elf2flt flthdr ) fi