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

User [email protected] added comment
https://bugzilla.novell.com/show_bug.cgi?id=471385#c1





--- Comment #1 from Steven Munroe <[email protected]>  2009-02-01 19:16:32 
MST ---
I recommend replacing the .align with .p2align.

align can differ from platform to platform but .p2align which has consistent
semantics.

The following patch does this:

diff -urN mono-2.4-tar/mcs/tools/mkbundle/mkbundle.cs
mono-2.4-patched/mcs/tools/mkbundle/mkbundle.cs
--- mono-2.4-tar/mcs/tools/mkbundle/mkbundle.cs    2009-01-20
11:32:26.000000000 -0500
+++ mono-2.4-patched/mcs/tools/mkbundle/mkbundle.cs    2009-01-30
16:15:27.000000000 -0500
@@ -158,7 +158,7 @@
             sw.WriteLine (
                 ".globl {0}\n" +
                 "\t.section .rodata\n" +
-                "\t.align 32\n" +
+                "\t.p2align 5\n" +
                 "\t.type {0}, @object\n" +
                 "\t.size {0}, {1}\n" +
                 "{0}:\n",

-- 
Configure bugmail: https://bugzilla.novell.com/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the QA contact for the bug.
You are the assignee for the bug.
_______________________________________________
mono-bugs maillist  -  [email protected]
http://lists.ximian.com/mailman/listinfo/mono-bugs

Reply via email to