diff -r c95c1ccf5b77 -r c4b4bb58f639 scripts/build/cc/gcc.sh --- a/scripts/build/cc/gcc.sh Sat Jan 04 20:16:18 2014 +0100 +++ b/scripts/build/cc/gcc.sh Sat Jan 04 16:17:40 2014 +0100 @@ -333,6 +333,11 @@ *) extra_config+=( "--with-linker-hash-style=${CT_CC_GCC_LNK_HASH_STYLE}" );; esac + case "${CT_CC_GCC_DEC_FLOATS}" in + "") ;; + *) extra_config+=( "--enable-decimal-float=${CT_CC_GCC_DEC_FLOATS}" );; + esac + case "${CT_ARCH}" in mips) case "${CT_CC_GCC_mips_llsc}" in @@ -784,6 +789,11 @@ *) extra_config+=( "--with-linker-hash-style=${CT_CC_GCC_LNK_HASH_STYLE}" );; esac + case "${CT_CC_GCC_DEC_FLOATS}" in + "") ;; + *) extra_config+=( "--enable-decimal-float=${CT_CC_GCC_DEC_FLOATS}" );; + esac + if [ "${CT_CC_GCC_ENABLE_PLUGINS}" = "y" ]; then extra_config+=( --enable-plugin ) fi