diff options
author | Cliff Brake <cbrake@bec-systems.com> | 2009-01-07 12:19:00 -0500 |
---|---|---|
committer | Cliff Brake <cbrake@bec-systems.com> | 2009-01-07 13:54:02 -0500 |
commit | c929ffc653fbb29f0666674ac0412446221cea9a (patch) | |
tree | 0ffa39ebec6fca02a7c9eb1332c533a403cd4bb7 /packages/mono/mono-1.9.1+2.2-rc1/fix-eabi-syscall.patch | |
parent | ca084dba42b886690cf227c4ccf2326432fe6c93 (diff) |
mono 2.2: update from preview 3 to RC1, add EABI patch
This changeset renames recipes to better reflect mono versioning.
Note, the previous mono 2.2 recipe was mis-named
rc2 and was actually preview 2. If you built the
misnamed 2.2.0-rc2 package, it will take precedence
over the new recipe and you must manually remove
ipks in the tmp dir before building the 2.2-rc1
version.
Diffstat (limited to 'packages/mono/mono-1.9.1+2.2-rc1/fix-eabi-syscall.patch')
-rw-r--r-- | packages/mono/mono-1.9.1+2.2-rc1/fix-eabi-syscall.patch | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/packages/mono/mono-1.9.1+2.2-rc1/fix-eabi-syscall.patch b/packages/mono/mono-1.9.1+2.2-rc1/fix-eabi-syscall.patch new file mode 100644 index 0000000000..b752a8bd14 --- /dev/null +++ b/packages/mono/mono-1.9.1+2.2-rc1/fix-eabi-syscall.patch @@ -0,0 +1,12 @@ +--- mono.orig/mono/mini/mini-arm.c 2008/12/12 19:49:41 121457 ++++ mono/mono/mini/mini-arm.c 2009/01/05 08:58:47 122416 +@@ -581,6 +581,8 @@ + { + #if __APPLE__ + sys_icache_invalidate (code, size); ++#elif ((__GNUC__ >= 4) && (__GNUC_MINOR__ >= 1)) ++ __clear_cache (code, code + size); + #else + __asm __volatile ("mov r0, %0\n" + "mov r1, %1\n" + |