summaryrefslogtreecommitdiff
path: root/recipes/mono/files/mono-mips-endian.patch
diff options
context:
space:
mode:
authorShane Volpe <shanevolpe@gmail.com>2010-05-11 11:06:47 -0400
committerShane Volpe <shanevolpe@gmail.com>2010-05-13 09:15:53 -0400
commit21600c8a338c5052ff6fbfa3d4cbb2ec37453242 (patch)
tree982b0509840d287ffe191675e9844650c20dbb31 /recipes/mono/files/mono-mips-endian.patch
parent93a439a42b538be1f96c9250122504bfbdbd8d7b (diff)
mono: Add version 2.6.3
* Removed old versions of mono as they were broken. * Fixed mono packages so mono now builds with new native staging. * Changed mono floating point to ARM_FPU_NONE so it works with all architectures. * Added libtoolize --force --copy to mono.inc to allow any libtool version to work.
Diffstat (limited to 'recipes/mono/files/mono-mips-endian.patch')
-rw-r--r--recipes/mono/files/mono-mips-endian.patch28
1 files changed, 0 insertions, 28 deletions
diff --git a/recipes/mono/files/mono-mips-endian.patch b/recipes/mono/files/mono-mips-endian.patch
deleted file mode 100644
index c0f1d3c759..0000000000
--- a/recipes/mono/files/mono-mips-endian.patch
+++ /dev/null
@@ -1,28 +0,0 @@
---- mono-1.2.20070131/mono/mini/mini-mips.c 2007-01-31 07:00:22.000000000 +0100
-+++ mono-1.2.20070131.mod/mono/mini/mini-mips.c 2007-02-17 21:22:34.000000000 +0100
-@@ -238,6 +238,11 @@
- patch_lui_addiu(guint32 *ip, guint32 val)
- {
- guint16 *__lui_addiu = (guint16*)(void *)(ip);
-+#if G_BYTE_ORDER == G_BIG_ENDIAN
-+ int index=1;
-+#else
-+ int index=0;
-+#endif
-
- #if 0
- printf ("patch_lui_addiu ip=0x%08x (0x%08x, 0x%08x) to point to 0x%08x\n",
-@@ -245,10 +250,10 @@
- fflush (stdout);
- #endif
- if (((guint32)(val)) & (1 << 15))
-- __lui_addiu [1] = ((((guint32)(val)) >> 16) & 0xffff) + 1;
-+ __lui_addiu [index] = ((((guint32)(val)) >> 16) & 0xffff) + 1;
- else
-- __lui_addiu [1] = (((guint32)(val)) >> 16) & 0xffff;
-- __lui_addiu [3] = ((guint32)(val)) & 0xffff;
-+ __lui_addiu [index] = (((guint32)(val)) >> 16) & 0xffff;
-+ __lui_addiu [index+2] = ((guint32)(val)) & 0xffff;
- mono_arch_flush_icache ((guint8 *)ip, 8);
- }
-