[Mono-dev] Problems with long to string conversion on mipsel

Thomas Kunze tkunze at informatik.hu-berlin.de
Tue Jul 10 16:48:12 EDT 2007


Hi everybody,

I played a bit with mono on mipsel and could compile it and run a first 
helloworld program. I made a small patch to fix an endianess problem and 
attached it to the bugtracker. (bug 81052)

But now there is a bug in the conversion from long to string. If I run:

using System;

public class HelloWorld
{
       public static void Main(string[] args)
       {
               for(long i=0; i<20; i++)
                       Console.WriteLine(i);
       }
}

on mipsel I get:

root at OpenWrt:/mnt# mono long.exe
0
1
2
3
4
5
6
7
8
9
:
;
<
=
 >
?
@
A
B
C

So can anybody tell me where the long-to-string conversion is 
implemented? Any other comments are also welcome.

Regards,
Thomas Kunze





More information about the Mono-devel-list mailing list