[Mono-bugs] [Bug 324134] Add support for Mac OS X / ppc64

bugzilla_noreply at novell.com bugzilla_noreply at novell.com
Thu Aug 7 09:08:45 EDT 2008


https://bugzilla.novell.com/show_bug.cgi?id=324134

User olh at novell.com added comment
https://bugzilla.novell.com/show_bug.cgi?id=324134#c34





--- Comment #34 from Olaf Hering <olh at novell.com>  2008-08-07 07:08:45 MDT ---
Maybe you are right. Its just confusing to see a mix of __ppc__, __powerpc__,
__ppc64__ etc.

I'm working with 1.9.1 for the time being.

There is a bug in mono/mini/mini-ppc.c:mono_arch_flush_icache(), the pointer is
truncated. Something like this is needed:

-       start = (guint8*)((guint32)start & ~(cachelinesize - 1));
+       start = (guint8*)((unsigned long)start & ~(cachelinesize - 1));


-- 
Configure bugmail: https://bugzilla.novell.com/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the QA contact for the bug.


More information about the mono-bugs mailing list