[Mono-bugs] [Bug 29809][Nor] New - Jay broken on SPARC
bugzilla-daemon@rocky.ximian.com
bugzilla-daemon@rocky.ximian.com
3 Sep 2002 15:03:59 -0000
Please do not reply to this email- if you want to comment on the bug, go to the
URL shown below and enter your comments there.
Changed by crichton@gimp.org.
http://bugzilla.ximian.com/show_bug.cgi?id=29809
--- shadow/29809 Tue Sep 3 11:03:59 2002
+++ shadow/29809.tmp.15384 Tue Sep 3 11:03:59 2002
@@ -0,0 +1,30 @@
+Bug#: 29809
+Product: Mono/MCS
+Version: unspecified
+OS: GNU/Linux [Other]
+OS Details:
+Status: NEW
+Resolution:
+Severity:
+Priority: Normal
+Component: Misc
+AssignedTo: mono-bugs@ximian.com
+ReportedBy: crichton@gimp.org
+QAContact: mono-bugs@ximian.com
+TargetMilestone: ---
+URL:
+Cc:
+Summary: Jay broken on SPARC
+
+Jay doesn't work on SPARC due to a small bug:
+
+In output.c, we have a line that reads:
+
+extern int csharp;
+
+In main.c, it is defined as:
+
+char csharp = 0;
+
+This leads to problems with SIGBUS on a SPARC. Fix is simple,
+change 'extern int' to 'extern char'