Re: [Mono-dev] Mono on DD-WRT or OpenWrt

2008-09-05 Thread Kornél Pál
Hi, Rodrigo Kumpera wrote: Well, OpenWrt runs mostly or arm based devises, so mono should work. The issue will be building a small enough runtime to fit the flash card. Sorry not mentioning the architecture. The devices I'm interested in use the MIPS32 architecture. I've found few

Re: [Mono-dev] error CS0006: cannot find metadata file `System.Data.dll`

2008-09-05 Thread Leandro Tracchia
ok i found the package (http://packages.ubuntu.com/search?suite=defaultsection=allarch=anysearchon=contentskeywords=System.Data.dll). i installed both 1.0 and 2.0, but which one am i supposed to use/install??? i also found i have to install this package to get the .exe file to run because i was

[Mono-dev] Compilation error for ARM

2008-09-05 Thread FirstName LastName
Hi, I'm trying to compile the latest code from SVN (rev 112374) because I have some issues with mono 1.9.1 regarding soft float with ARM. I get the following error: CC pedump.oLD pedump../utils/.libs/libmonoutils.a(mono-mmap.o): In function

Re: [Mono-dev] System.Drawing.Graphics ignores InterpolationMode

2008-09-05 Thread Sebastien Pouliot
Hello, Cairo, on which libgdiplus depends for graphics, has much less interpolation options than MS GDI+ defines in its API. So libgdiplus maps many to few options in this case. Cairo is also known not to downscale images very well (but some Cairo people are looking at this). Google cairo's

Re: [Mono-dev] Compilation error for ARM

2008-09-05 Thread Rodrigo Kumpera
Hi, The functions that uses shm_* exists for making performance counters readable from the outside. But the patch to export performance counters has not yet hit trunk so, for now, you can just comment the offending code. It would be nice, thou, to have a configure option to turn this off once it

Re: [Mono-dev] Compilation error for ARM

2008-09-05 Thread FirstName LastName
What do you mean removed offending code? Could you give me an example of how to remove it? ( I want to be sure that I'm doing the right stuff) Thanks! Date: Fri, 5 Sep 2008 17:30:10 -0300From: [EMAIL PROTECTED]: [EMAIL PROTECTED]: Re: [Mono-dev] Compilation error for ARMCC:

Re: [Mono-dev] Compilation error for ARM

2008-09-05 Thread Andreas Färber
Am 05.09.2008 um 22:30 schrieb Rodrigo Kumpera: The functions that uses shm_* exists for making performance counters readable from the outside. [...] It would be nice, thou, to have a configure option to turn this off once it hits trunk as embedded targets (as yours) might not have

[Mono-dev] SEGV in mono_class_is_assignable_from in gmcs

2008-09-05 Thread Casey Marshall
I'm getting a SEGV in the function `mono_class_is_assignable_from' when trying to compile some internal code. I can't get the location in my source code where the error occurs, but I'll add some info from GDB to this email. Has anyone seen something like this before? This is with a mono/gmcs

Re: [Mono-dev] SEGV in mono_class_is_assignable_from in gmcs

2008-09-05 Thread Casey Marshall
Running gmcs under the mono debugger got me further: I was able to find the code causing the issue. There were two methods in a class that had the form: private static XXXT FindRelevantT(XXXT[] candidates); private static object FindRelevantT(IComparable[] candidates); And the type XXX

Re: [Mono-dev] SEGV in mono_class_is_assignable_from in gmcs

2008-09-05 Thread Casey Marshall
Bug filed with test case: https://bugzilla.novell.com/show_bug.cgi?id=423975 This is easy to work around in my case, so it's low priority. Casey Marshall wrote: Running gmcs under the mono debugger got me further: I was able to find the code causing the issue. There were two methods in a