diff mbox

[avr] : Disable libquadmath

Message ID 50447254.7000000@gjlay.de
State New
Headers show

Commit Message

Georg-Johann Lay Sept. 3, 2012, 9:03 a.m. UTC
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.

Comments

Denis Chertykov Sept. 3, 2012, 10:42 a.m. UTC | #1
2012/9/3 Georg-Johann Lay <avr@gjlay.de>:
> This patch disables libquadmath.
>
> 128 bit wide floats are not really sensible on avr.
>
> Ok for trunk?
>

Ok.
Please commit.

Denis
diff mbox

Patch

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*)