Re: [Mono-dev] Please help this Git newbie

2011-01-05 Thread KISHIMOTO, Makoto
Hello To sum things up: I'm on Windows, using msysgit, and have been following the FAQs on the Mono and GitHub sites. I'm at this point: http://mono-project.com/Compiling_Mono_From_Git Doing git clone git://github.com/mono/mono.git (anonymous access) works, (although I have no idea

Re: [Mono-dev] Please help this Git newbie

2011-01-05 Thread Zoltan Varga
Hi, If you have commit access, use: g...@github.com:mono/mono.git Zoltan On Wed, Jan 5, 2011 at 8:55 AM, Stifu st...@free.fr wrote: Hi guys, To sum things up: I'm on Windows, using msysgit, and have been following the FAQs on the Mono and GitHub sites. I'm at this point:

Re: [Mono-dev] Please help this Git newbie

2011-01-05 Thread Stifu
Thanks Zoltan! Will try that once I get back home. And thanks for the info, Makoto. Zoltan Varga wrote: Hi, If you have commit access, use: g...@github.com:mono/mono.git Zoltan On Wed, Jan 5, 2011 at 8:55 AM, Stifu st...@free.fr wrote: Hi guys, To sum things

Re: [Mono-dev] Please help this Git newbie

2011-01-05 Thread Rolf Bjarne Kvinge
Hi, You need to create a fork of mono in your github account before you can check it out using your username. Rolf From: mono-devel-list-boun...@lists.ximian.com [mailto:mono-devel-list-boun...@lists.ximian.com] On Behalf Of Stifu Sent: miƩrcoles, 05 de enero de 2011 8:56 To:

Re: [Mono-dev] File not found error when using Activator.CreateInstanceFrom()

2011-01-05 Thread mike
Anybody else see this while using P/Invoke under mono? -- View this message in context: http://mono.1490590.n4.nabble.com/File-not-found-error-when-using-Activator-CreateInstanceFrom-tp3064104p3175616.html Sent from the Mono - Dev mailing list archive at Nabble.com.

Re: [Mono-dev] File not found error when using Activator.CreateInstanceFrom()

2011-01-05 Thread Robert Jordan
On 05.01.2011 15:25, mike wrote: Anybody else see this while using P/Invoke under mono? They do not even relate, so no one else will see this ;) Please explain what you're trying to do. Robert ___ Mono-devel-list mailing list

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

2011-01-05 Thread Elijah Taylor
Hi Zoltan, I've addressed all of the issues you pointed out (minus genmdesc.c: __nacl_suspend_thread_if_needed, but that doesn't need to be merged in at this time, it can remain in my local repository only). Please take another look at your earliest convenience and let me know if there's

Re: [Mono-dev] File not found error when using Activator.CreateInstanceFrom()

2011-01-05 Thread Tom Spink
Are you still talking about Windows-only here? -- Spink On 5 January 2011 14:25, mike mgu...@knology.net wrote: Anybody else see this while using P/Invoke under mono? -- View this message in context:

Re: [Mono-dev] File not found error when using Activator.CreateInstanceFrom()

2011-01-05 Thread mike
Not sure what you mean. Actually, I was just refreshing the thread. ;-) See previous post and example code, If I p/Invoke to a single native dll, all is fine. However if that dll depends on a secondary native dll, I get an unhandled exception: System.DLLNotFoundException. Again, this

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

2011-01-05 Thread Zoltan Varga
Hi, I think the current code looks ok, and we should think about how to merge it into mono trunk. As a first step, could you rebase your master branch on top of master to fix the few conflicts which has surfaced due to changes to mono master ? Zoltan On Wed, Jan 5, 2011 at

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

2011-01-05 Thread Elijah Taylor
Zoltan, I've rebased from mono's master branch and fixed all merge conflicts, but something that's gone in since I first forked has now broken NaCl AOT compilation for me. On amd64 the compiler just crashes and I'm looking into that, nut on x86 I'm getting this: Can't use AOT image 'mscorlib' in

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

2011-01-05 Thread Zoltan Varga
Hi, On Thu, Jan 6, 2011 at 1:24 AM, Elijah Taylor elijahtay...@google.comwrote: Zoltan, I've rebased from mono's master branch and fixed all merge conflicts, but something that's gone in since I first forked has now broken NaCl AOT compilation for me. On amd64 the compiler just crashes and

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

2011-01-05 Thread Zoltan Varga
Hi, This should work as follows: every aot image contains a MonoAotFileInfo structure, emitted in emit_file_info () in aot-compiler.c, which has a 'flags' field, and the MONO_AOT_FILE_FLAG_FULL_AOT flag should be set in this field. At runtime, check_usable() in aot-runtime.c checks this flag.

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

2011-01-05 Thread Elijah Taylor
Ok, I'll check out the changes/info you mentioned and go through the files that auto-merged, too. Probably won't get this done for at least a day or so, but I'll rebase again once I've fixed it. Hopefully by that point something else won't have broken too :) -Elijah On Wed, Jan 5, 2011 at