[Pkg-ocaml-maint-commits] [SCM] OCaml packaging branch, master, updated. debian/3.12.0-6-1-g330dcbc

Stephane Glondu steph at glondu.net
Sun May 29 07:32:50 UTC 2011


The following commit has been merged in the master branch:
commit 330dcbc6da27afff63ab25c9070d70bd8dd59266
Author: Stephane Glondu <steph at glondu.net>
Date:   Sun May 29 00:00:39 2011 +0200

    Force aligned access for double and int64 on mips*

diff --git a/debian/changelog b/debian/changelog
index 42bd45f..c90431c 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,9 @@
+ocaml (3.12.0-7) unstable; urgency=low
+
+  * Force aligned access for double and int64 on mips*
+
+ -- Stéphane Glondu <glondu at debian.org>  Sun, 29 May 2011 00:01:26 +0200
+
 ocaml (3.12.0-6) unstable; urgency=low
 
   * Provide a way to use legacy custom linking (Closes: #627761)
diff --git a/debian/patches/0013-Force-aligned-access-for-double-and-int64-on-mips.patch b/debian/patches/0013-Force-aligned-access-for-double-and-int64-on-mips.patch
new file mode 100644
index 0000000..35e8097
--- /dev/null
+++ b/debian/patches/0013-Force-aligned-access-for-double-and-int64-on-mips.patch
@@ -0,0 +1,35 @@
+From: Stephane Glondu <steph at glondu.net>
+Date: Sat, 28 May 2011 23:55:08 +0200
+Subject: Force aligned access for double and int64 on mips*
+
+Some mips machines accept unaligned accesses, others don't. Therefore,
+do not rely on auto-detection.
+
+Signed-off-by: Stephane Glondu <steph at glondu.net>
+---
+ configure |    4 ++--
+ 1 files changed, 2 insertions(+), 2 deletions(-)
+
+diff --git a/configure b/configure
+index 32e8d2e..e03a4b8 100755
+--- a/configure
++++ b/configure
+@@ -434,7 +434,7 @@ esac
+ # Determine alignment constraints
+ 
+ case "$host" in
+-  sparc*-*-*|hppa*-*-*|arm*-*-*)
++  sparc*-*-*|hppa*-*-*|arm*-*-*|mips*-*-*)
+     # On Sparc V9 with certain versions of gcc, determination of double
+     # alignment is not reliable (PR#1521), hence force it.
+     # Same goes for hppa.
+@@ -467,7 +467,7 @@ esac
+ if $int64_native; then
+   case "$host" in
+     # PR#5088: autodetection is unreliable on ARM
+-    sparc*-*-*|hppa*-*-*|arm*-*-*)
++    sparc*-*-*|hppa*-*-*|arm*-*-*|mips*-*-*)
+       if test $2 = 8; then
+         echo "64-bit integers can be word-aligned."
+         echo "#undef ARCH_ALIGN_INT64" >> m.h
+-- 
diff --git a/debian/patches/series b/debian/patches/series
index f37aa5e..fa726e6 100644
--- a/debian/patches/series
+++ b/debian/patches/series
@@ -10,3 +10,4 @@
 0010-Avoid-multiple-declarations-in-generated-.c-files-in.patch
 0011-Embed-bytecode-in-C-object-when-using-custom.patch
 0012-Properly-initialize-executable-name-in-caml_startup_.patch
+0013-Force-aligned-access-for-double-and-int64-on-mips.patch

-- 
OCaml packaging



More information about the Pkg-ocaml-maint-commits mailing list