This patch disables libquadmath. 128 bit wide floats are not really sensible on avr.
Ok for trunk? Johann -- * configure.ac (noconfigdirs,target=avr): Add target-libquadmath. * configure: Regenerate.
Index: configure.ac =================================================================== --- configure.ac (revision 190873) +++ configure.ac (working copy) @@ -544,6 +544,13 @@ case "${target}" in ;; esac +# Disable libquadmath for some systems. +case "${target}" in + avr-*-*) + noconfigdirs="$noconfigdirs target-libquadmath" + ;; +esac + # Disable libstdc++-v3 for some systems. case "${target}" in *-*-vxworks*) Index: configure =================================================================== --- configure (revision 190873) +++ configure (working copy) @@ -3153,6 +3153,13 @@ case "${target}" in ;; esac +# Disable libquadmath for some systems. +case "${target}" in + avr-*-*) + noconfigdirs="$noconfigdirs target-libquadmath" + ;; +esac + # Disable libstdc++-v3 for some systems. case "${target}" in *-*-vxworks*)