Re: [Mono-dev] Third Party dll error, member function returns null, but works in .NET

2011-02-18 Thread Stifu
Hi, If the problem is indeed triggered by the third party library, and that you do not have the sources for it, I guess the best course of action is to file a bug report (http://mono-project.com/Bugs), attaching or linking to the third party library. and...@cogmation.com wrote: > > Hi, > > I

Re: [Mono-dev] Third Party dll error, member function returns null, but works in .NET

2011-02-18 Thread Robert Jordan
On 17.02.2011 21:14, and...@cogmation.com wrote: > > Hi, > > I have been fighting this issue for a couple weeks now. I have a small test > program which works in .net, but when running in mono, i get a > System.NullReferenceException. I have attached my test program, including > the necessary thi

Re: [Mono-dev] Third Party dll error, member function returns null, but works in .NET

2011-02-18 Thread Robert Jordan
On 18.02.2011 11:29, Robert Jordan wrote: > On 17.02.2011 21:14, and...@cogmation.com wrote: >> >> Hi, >> >> I have been fighting this issue for a couple weeks now. I have a small test >> program which works in .net, but when running in mono, i get a >> System.NullReferenceException. I have attac

[Mono-dev] Trouble compiling tag 2.8.2

2011-02-18 Thread John Feminella
hello Mono-ers, I'm unable to compile the 2.8.2 tag, which I'm looking to do so I can get C# v4-level support and access to `dynamic`. My uname -a is: [/tmp/mono]> uname -a Linux genesis 2.6.32-27-generic #49-Ubuntu SMP Thu Dec 2 00:51:09 UTC 2010 x86_64 GNU/Linux I wanted BigArrays and parallel

Re: [Mono-dev] Trouble compiling tag 2.8.2

2011-02-18 Thread Zoltan Varga
Hi, You should try the recently released 2.10. Zoltan On Fri, Feb 18, 2011 at 4:24 PM, John Feminella wrote: > hello Mono-ers, > > I'm unable to compile the 2.8.2 tag, which I'm looking to do so I can > get C# v4-level support and access to `dynamic`. My uname -a is: > > [/tmp

Re: [Mono-dev] Trouble compiling tag 2.8.2

2011-02-18 Thread John Feminella
Thanks, Zoltan. I don't see a 2.10 tag, though; is the tip of the 2.10 branch the right place to be? ~ jf -- John Feminella Principal Consultant, BitsBuilder LI: http://www.linkedin.com/in/johnxf SO: http://stackoverflow.com/users/75170/ On Fri, Feb 18, 2011 at 10:46, Zoltan Varga wrote: > Hi,

Re: [Mono-dev] Trouble compiling tag 2.8.2

2011-02-18 Thread Zoltan Varga
You can try that, hopefully we will have a tag soon. Zoltan On Fri, Feb 18, 2011 at 4:52 PM, John Feminella wrote: > Thanks, Zoltan. I don't see a 2.10 tag, though; is the tip of the 2.10 > branch the right place to be? > > ~ jf > -- > John Feminella > Principal Consultant, BitsBu

Re: [Mono-dev] Assertion failures when using Moq on Linux/ARM

2011-02-18 Thread Weeble
Yikes. Sorry about the multiple posts there. I should have realised the mail server was just down. > On Mon, Feb 7, 2011 at 12:09 PM, Weeble wrote: >> I'm currently running Mono 2.6.7 on an ARM box (a Sheevaplug) running >> Linux. When I try to run unit tests that work on Windows-x86 with >> Micr

Re: [Mono-dev] sgen garbage collector/unmanaged resources/multi-thread issue

2011-02-18 Thread matteo tesser
Hi Rodrigo, Yes, I release memory on finalizers (unfortunately I cannot use Disposable objects). At the moment, I can provide you a binary test, if you can reproduce the behavior, and it is needed, I can try to exact the relevant code for the procedure and provide source code, but it takes time.

Re: [Mono-dev] Assertion failures when using Moq on Linux/ARM

2011-02-18 Thread Zoltan Varga
Hi, > Is there any point in filing a bug before I have a reliable > reproduction, or will it just get closed WORKSFORME? > > You can report bugs which are hard to reproduce, but we can't really fix them. Testcases which crash x% percent of them time are good too, you don't need 100%.

[Mono-dev] Detect whether application is running on LLVM

2011-02-18 Thread no.human.being
Hello Mono-Devs! I am currently developing a long-running, computationally-intensive server application for distributed-computing. Now, obviously, this is an application which should be run using "mono --llvm" for performance reasons (application is performing computationally bound number-crunchi

Re: [Mono-dev] Detect whether application is running on LLVM

2011-02-18 Thread Zoltan Varga
Hi, Not currently. You can add a wrapper shell script to your app and tell people to use that instead of using mono . Zoltan On Fri, Feb 18, 2011 at 7:54 PM, no.human.being wrote: > > Hello Mono-Devs! > > I am currently developing a long-running, computationally-intensive server >

Re: [Mono-dev] Compiling with NaCl support

2011-02-18 Thread C.Rivlaldo
Hello! We want to port our 3d engine to NaCl. But we have tried to compie Mono on Linux, but still cannot compile it. Because we haven't good expirience at Linux. May be some kind person can give us compiled binaries of Mono? Thank you! -- View this message in context: http://mono.1490590.n4.na

Re: [Mono-dev] [PATCH] more support for Google Native Client

2011-02-18 Thread C.Rivlaldo
Hello! I'm trying to compile Mono 2.10 for Nacl at Ubuntu with using Elijah's patch. After executing "nacl-runtime-mono.sh" I had some error about undefined reference: genmdesc.c:29: undefined reference to `__nacl_suspend_thread_if_needed' Why it happened? Please, help me. I want to compile mon

Re: [Mono-dev] [PATCH] more support for Google Native Client

2011-02-18 Thread Elijah Taylor
Hi, Take a look at this: https://github.com/elijahtaylor/mono/blob/master/mono/mini/genmdesc.c This includes a dummy implementation of __nacl_suspend_thread_if_needed for that file. It wasn't merged into mono's head because it's a temporary measure and won't be required long term. Essentially f