[Mono-dev] using VS to embed mono...

2007-01-15 Thread Thomas Wiest
Hey, I'm trying to embed mono using Visual Studio 2005 (as per http://www.mono-project.com/Compiling_Mono_VSNET ). I've been able to work through most of the path / cygwin issues, but now while compiling test-invoke in VS I'm getting these errors: -- Build started: Project:

Re: [Mono-dev] using VS to embed mono...

2007-01-15 Thread Paolo Molaro
On 01/15/07 Thomas Wiest wrote: Hey, I'm trying to embed mono using Visual Studio 2005 (as per http://www.mono-project.com/Compiling_Mono_VSNET ). I've been able to work through most of the path / cygwin issues, but now while compiling test-invoke in VS I'm getting these errors:

Re: [Mono-dev] COM Interop - Lazy Initialization Patch

2007-01-15 Thread Paolo Molaro
On 01/12/07 Jon Chambers wrote: This patch doesn't initialize COM types in the runtime until they are needed, and also renames the COM wrapper methods to something more understandable. I'll work on supporting the DISABLE_COM flag in the near future. Do you really need all that many

Re: [Mono-dev] COM Interop - Lazy Initialization Patch

2007-01-15 Thread Jon Chambers
Paolo, I removed the additional wrappers. For COM Interop methods, there will either be two or three generated wrappers. For managed code calling an unmanaged COM object there will be 3. MONO_WRAPPER_COMINTEROP_INVOKE: This transitions the call made on the TransparentProxy to the underlying

[Mono-dev] Patch Review for HttpApplicationFactory.cs

2007-01-15 Thread Damien Churchill
Following Marek's advice I have improved on the previous patch updating the folder watching to cause an application restart. --- svn/mcs/class/System.Web/System.Web/HttpApplicationFactory.cs 2007-01-15 20:33:52.0 + +++ mcs/System.Web/System.Web/HttpApplicationFactory.cs 2007-01-15

Re: [Mono-dev] Patch review request -- generic changes to support MIPS conditional exceptions

2007-01-15 Thread mason
Hello, On Fri, Jan 12, 2007 at 03:44:15PM +0100, Paolo Molaro wrote: On 01/11/07 mason wrote: Index: mono/mini/inssel.brg === --- mono/mini/inssel.brg(revision 70746) +++ mono/mini/inssel.brg(working copy) @@

Re: [Mono-dev] Patch Review for HttpApplicationFactory.cs

2007-01-15 Thread Robert Jordan
Damien Churchill wrote: +if (File.Exists(Path.Combine(physical_app_path, Web.config))) +WatchLocationForRestart(,Web.config); +if (File.Exists(Path.Combine(physical_app_path, web.config))) +

[Mono-dev] Revised Patch

2007-01-15 Thread Damien Churchill
Ok, done as suggested, also added an overloaded method for just a filter in the root of the virtual path to be watched. --- svn_clean/mcs/class/System.Web/System.Web/HttpApplicationFactory.cs 2007-01-15 21:25:40.0 + +++ mcs/System.Web/System.Web/HttpApplicationFactory.cs 2007-01-15

Re: [Mono-dev] Some strange behavior of optimization options for JIT

2007-01-15 Thread Massimiliano Mantione
Hey, you sent this on Christmas :-) On Mon, 2006-12-25 at 19:11 +0300, Sergey Tikhonov wrote: As we see two locals were introduced to hold sum results. In mono_arch_allocate_vars the mono_allocate_stack_slots_full is called to allocate locals and calculate offsets for them. Somehow it doesn't

Re: [Mono-dev] Revised Patch

2007-01-15 Thread Marek Habersack
On Mon, 15 Jan 2007 23:37:05 +, Damien Churchill [EMAIL PROTECTED] scribbled: Ok, done as suggested, also added an overloaded method for just a filter in the root of the virtual path to be watched. Looks good, except that App_Code, App_Browser, App_GlobalResources should not be filtered on