[Mono-dev] [PATCH] Get back methods in the symbol files generated by SRE-using compilers

2008-10-15 Thread Cedric Vivier
Hey all, I've recently discovered that code generated by booc (or other compilers using SRE [1]) cannot be conveniently debugged with the mono debugger anymore because there is no methods information in the generated symbol file. It was working pre-kahalo, but when symbol writing code from SRE

Re: [Mono-dev] Marshaling DateTime type

2008-10-15 Thread Raja R Harinath
Hi, Robert Jordan [EMAIL PROTECTED] writes: FirstName LastName wrote: What would be the best equivalent unmanaged type (linux and windows) to use if I want to marshal a DateTime in the managed world (.NET, mono)? You can't marshal DateTime directly because its internal representation is

Re: [Mono-dev] [PATCH] Get back methods in the symbol files generated by SRE-using compilers

2008-10-15 Thread Jb Evain
Hey, On 10/15/08, Cedric Vivier [EMAIL PROTECTED] wrote: Please review. Following up an IRC discussion, this patch has been reviewed and commited. -- Jb Evain [EMAIL PROTECTED] ___ Mono-devel-list mailing list Mono-devel-list@lists.ximian.com

Re: [Mono-dev] Marshaling DateTime type

2008-10-15 Thread Robert Jordan
Raja R Harinath wrote: Hi, Robert Jordan [EMAIL PROTECTED] writes: FirstName LastName wrote: What would be the best equivalent unmanaged type (linux and windows) to use if I want to marshal a DateTime in the managed world (.NET, mono)? You can't marshal DateTime directly because its

Re: [Mono-dev] Dll not found when deploying a mono app into a different machine

2008-10-15 Thread Paolo Molaro
On 10/13/08 Andoni Morales wrote: I'm having a very strange problem on Windows I've created a multimedia player based on GStreamer an Gtk that runs both on Windows and Linux. The GStreamer backend is written in C and wrapped to C# using the GAPI tools, importing my own dll called

Re: [Mono-dev] Marshaling DateTime type

2008-10-15 Thread Raja R Harinath
Hi, Robert Jordan [EMAIL PROTECTED] writes: Raja R Harinath wrote: Robert Jordan [EMAIL PROTECTED] writes: FirstName LastName wrote: What would be the best equivalent unmanaged type (linux and windows) to use if I want to marshal a DateTime in the managed world (.NET, mono)? You can't

[Mono-dev] Interactive C# - running a script

2008-10-15 Thread Daniel Morgan
I would like to use the csharp interactive shell to run a script file. Is this possible? Here is an example (not tested): linux$ cat script-file csharp Connecting... Copying... Done. linux$ Example script (not tested): LoadLibrary(System.Data.dll); LoadLibrary(System.Data.OracleClient);

Re: [Mono-dev] [PATCH] Get back methods in the symbol files generated by SRE-using compilers

2008-10-15 Thread Jb Evain
On 10/15/08, Jb Evain [EMAIL PROTECTED] wrote: Following up an IRC discussion, this patch has been reviewed and commited. And has been backported to the 2.0 branch as well. -- Jb Evain [EMAIL PROTECTED] ___ Mono-devel-list mailing list

Re: [Mono-dev] Marshaling DateTime type

2008-10-15 Thread Robert Jordan
Hi, Raja R Harinath wrote: Hi, Robert Jordan [EMAIL PROTECTED] writes: Raja R Harinath wrote: Robert Jordan [EMAIL PROTECTED] writes: FirstName LastName wrote: What would be the best equivalent unmanaged type (linux and windows) to use if I want to marshal a DateTime in the managed world

Re: [Mono-dev] Marshaling DateTime type

2008-10-15 Thread Robert Jordan
FirstName LastName wrote: What would be the best equivalent unmanaged type (linux and windows) to use if I want to marshal a DateTime in the managed world (.NET, mono)? You can't marshal DateTime directly because its internal representation is different between runtimes *and* profiles. Use

Re: [Mono-dev] [PATCH] Get back methods in the symbol files generated by SRE-using compilers

2008-10-15 Thread Rodrigo Kumpera
Martin, Do you think that this fix can be backported to 2.0? Thanks, Rodrigo 2008/10/15 Cedric Vivier [EMAIL PROTECTED] Hey all, I've recently discovered that code generated by booc (or other compilers using SRE [1]) cannot be conveniently debugged with the mono debugger anymore because

[Mono-dev] Marshaling DateTime type

2008-10-15 Thread FirstName LastName
What would be the best equivalent unmanaged type (linux and windows) to use if I want to marshal a DateTime in the managed world (.NET, mono)? Thanks. _ ___ Mono-devel-list mailing list

[Mono-dev] Using Mono.Options in MS.NET

2008-10-15 Thread Avery Pennarun
Hi, I just read Miguel's posting about Mono.Options being included in Mono 2.2. I agree that Mono.Options is great; in fact, I include a copy of it in several of the problems we've built at work. It doesn't particularly require mono, so it works fine under MS.NET. There are a few other