Revert multilib handling. Even if we don't do multilib, we need to at least
author"Yann E. MORIN" <yann.morin.1998@anciens.enib.fr>
Sun Sep 16 08:24:55 2007 +0000 (2007-09-16)
changeset 392ee71450c5a6f
parent 391 11172b754564
child 393 4e27d82d5c5d
Revert multilib handling. Even if we don't do multilib, we need to at least
say we don't, and not let gcc choose on its own (which it does wrong).
scripts/build/cc_gcc.sh
     1.1 --- a/scripts/build/cc_gcc.sh	Sat Sep 15 21:44:18 2007 +0000
     1.2 +++ b/scripts/build/cc_gcc.sh	Sun Sep 16 08:24:55 2007 +0000
     1.3 @@ -219,6 +219,11 @@
     1.4      extra_config="${extra_config} ${CT_ARCH_WITH_ARCH} ${CT_ARCH_WITH_ABI} ${CT_ARCH_WITH_CPU} ${CT_ARCH_WITH_TUNE} ${CT_ARCH_WITH_FPU} ${CT_ARCH_WITH_FLOAT}"
     1.5      [ "${CT_SHARED_LIBS}" = "y" ] || extra_config="${extra_config} --disable-shared"
     1.6      [ "${CT_CC_CXA_ATEXIT}" == "y" ] && extra_config="${extra_config} --enable-__cxa_atexit"
     1.7 +    if [ "${CT_TARGET_MULTILIB}" = "y" ]; then
     1.8 +        extra_config="${extra_config} --enable-multilib"
     1.9 +    else
    1.10 +        extra_config="${extra_config} --disable-multilib"
    1.11 +    fi
    1.12  
    1.13      CT_DoLog DEBUG "Extra config passed: \"${extra_config}\""
    1.14