41 lines
1.1 KiB
Plaintext
41 lines
1.1 KiB
Plaintext
Index: libffi/ChangeLog.libffi
|
|
===================================================================
|
|
--- libffi.orig/ChangeLog.libffi
|
|
+++ libffi/ChangeLog.libffi
|
|
@@ -1,3 +1,9 @@
|
|
+2009-12-27 Matthias Klose <doko@ubuntu.com>
|
|
+
|
|
+ * configure.ac (HAVE_LONG_DOUBLE): Define for mips when
|
|
+ appropriate.
|
|
+ * configure: Rebuilt.
|
|
+
|
|
2009-12-27 Anthony Green <green@redhat.com>
|
|
|
|
* testsuite/libffi.call/cls_longdouble.c: Don't xfail for ARM.
|
|
Index: libffi/configure
|
|
===================================================================
|
|
--- libffi.orig/configure
|
|
+++ libffi/configure
|
|
@@ -12211,6 +12211,8 @@ case "$host" in
|
|
TARGET=MIPS; TARGETDIR=mips
|
|
;;
|
|
mips*-*-linux*)
|
|
+ # Support 128-bit long double for NewABI.
|
|
+ HAVE_LONG_DOUBLE='defined(__mips64)'
|
|
TARGET=MIPS; TARGETDIR=mips
|
|
;;
|
|
|
|
Index: libffi/configure.ac
|
|
===================================================================
|
|
--- libffi.orig/configure.ac
|
|
+++ libffi/configure.ac
|
|
@@ -111,6 +111,8 @@ case "$host" in
|
|
TARGET=MIPS; TARGETDIR=mips
|
|
;;
|
|
mips*-*-linux*)
|
|
+ # Support 128-bit long double for NewABI.
|
|
+ HAVE_LONG_DOUBLE='defined(__mips64)'
|
|
TARGET=MIPS; TARGETDIR=mips
|
|
;;
|
|
|