[Mono-dev] Exception in runtime-invoke Wrapper

2011-01-18 Thread Martin Däumler
Hello, when executing mono/tests/delegate1.cs, "d.EndInvoke(ar1)" does not resume when the async call "d.BeginInvoke()" terminates. I guess that the problem is caused by an exception thrown by the wrapper used to call the setter of WaitHandle. The call stack (using GDB/DDD) of the call to "d.EndI

[Mono-dev] AOT Mono.WebBrowser.dll under ARM Embedded Linux environment problem

2011-01-18 Thread Daniel M
Hi All, Wondering if it is possible to AOT just a section of the Mono framework (and ignore parts of the framework i will not use???). I have mono 2.8 release cross compiled for ARM platform. Attempting to do AOT compilation. Binaries seem to compile fine until I hit the Mono.WebBrowser binary.

Re: [Mono-dev] AOT Mono.WebBrowser.dll under ARM Embedded Linux environment problem

2011-01-18 Thread Rodrigo Kumpera
Do you really need full aot on your target? It should be avoided when possible since a lot of stuff doesn't work under it. On Tue, Jan 18, 2011 at 1:17 PM, Daniel M wrote: > Hi All, > > Wondering if it is possible to AOT just a section of the Mono framework > (and ignore parts of the framework

[Mono-dev] Can't build current mono master branch

2011-01-18 Thread Tomi
Hi folks, I can't build current mono from github master branch on my linux machine (Ubuntu 11.04, parallel mono environment): ... MCS [basic] System.Core.dll : -R ../../class/lib/basic/System.Core.dll ./../../class/mono.snk make[8]: Leaving directory `/var/src/mono-2011-01-18/mono/mcs/class/S

Re: [Mono-dev] Can't build current mono master branch

2011-01-18 Thread Marek Safar
Hello, > Hi folks, I can't build current mono from github master branch on my > linux machine (Ubuntu 11.04, parallel mono environment): Update to the latest master, the issue should have been fixed there. Marek ___ Mono-devel-list mailing list Mono-deve

Re: [Mono-dev] AOT Mono.WebBrowser.dll under ARM Embedded Linux environment problem

2011-01-18 Thread Daniel M
Hi Rodrigo,Thanks for your reply.Its more of a test for the moment... we are having speed issues with System.Windows.Forms loading taking so long.eg. A simple .exe with a form + 1 button took 12 secs to load. Running with --profile=default:jit gave the following info:Total time spent compiling

Re: [Mono-dev] AOT Mono.WebBrowser.dll under ARM Embedded Linux environment problem

2011-01-18 Thread Zoltan Varga
Hi, You can speed it up, just don't use the --full-aot argument to the runtime, its probably not needed in your case. Zoltan On Tue, Jan 18, 2011 at 10:41 PM, Daniel M wrote: > Hi Rodrigo, > Thanks for your reply. > Its more of a test for the moment... we are having speed iss

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

2011-01-18 Thread mike
Hey Jonathan P, I noticed that u wrote the 'Interop with Native Libraries' article on the mono web site. Very good stuff. I have a question, can mono link or inter op to a Linux static library instead of a shared object? (i.e mylib.a) -- View this message in context: http://mono.1490590.n4.nabb

Re: [Mono-dev] AOT Mono.WebBrowser.dll under ARM Embedded Linux environment problem

2011-01-18 Thread Daniel M
Hey guys, I've applied --aot to the whole mono framework dll's using a simple script i made up.Once done, i ran the app 'mono testapp.exe'... and also 'mono --profile=default:jit testapp.exe' ... and pretty much appeared no different.(although the compiled count + resulting time was slightly

Re: [Mono-dev] AOT Mono.WebBrowser.dll under ARM Embedded Linux environment problem

2011-01-18 Thread Zoltan Varga
Try running with MONO_LOG_LEVEL=debug this will print out some log messages about AOT loading, so you can see what is the problem. Zoltan On Wed, Jan 19, 2011 at 4:49 AM, Daniel M wrote: > Hey guys, > > I've applied --aot to the whole mono framework dll's using a simple sc