[Mono-dev] Building mono-debugger 0.60 problem

2008-04-22 Thread Paul F. Johnson
Hi, I'm trying to build mono-debugger 0.60 on my F9 box (running on rawhide, but that's not really anything new and everything normally just builds). Besides a small patch needed to build the server on the backend (attached) I seem to be hitting a problem just building it. Is there a fix in the

Re: [Mono-dev] crashes in glib hangs (not exits) program

2008-04-22 Thread D Bera
doing nothing. Hope I am clear this time. Looking at the stack trace I _think_ its just some bug in mono's after-crash-stacktrace-printer which is causing the problem. Mono's behaviour (and yours too) is absolutely right otherwise. It's most likely the g_spawn* that gets the stack

Re: [Mono-dev] IOKit Enumeration

2008-04-22 Thread Joshua Perry
Dick, do you have any input on this before I start implementing the Win32 Comm API in io-layer? On Apr 21, 2008, at 5:53 AM, Geoff Norton wrote: Josh, At a high level it does, but this conversation should be moved over to mono-devel-list, so that the approrpiate maintainers (Dick

Re: [Mono-dev] Compiling Mono from Source Code

2008-04-22 Thread Bill Holmes
Paramesh, The following link is what I use. I have found it extremely useful. http://shana.iidbbs.com/en/mono_cygwin_tutorial.html ___ Mono-devel-list mailing list Mono-devel-list@lists.ximian.com

Re: [Mono-dev] [PATCH] Add mixed-mode assembly support on Windows

2008-04-22 Thread Kornél Pál
Hi, Now I redesigned several things but still fails to compile: /mono/mono/mono/metadata/domain.c:1216: undefined reference to [EMAIL PROTECTED]' /mono/mono/mono/metadata/domain.c:1171: undefined reference to [EMAIL PROTECTED]' If I add this to domain.c it compiles just fine: #include

Re: [Mono-dev] [PATCH] Add mixed-mode assembly support on Windows

2008-04-22 Thread Robert Jordan
Hi Kornél, Kornél Pál wrote: Now I redesigned several things but still fails to compile: /mono/mono/mono/metadata/domain.c:1216: undefined reference to [EMAIL PROTECTED]' /mono/mono/mono/metadata/domain.c:1171: undefined reference to [EMAIL PROTECTED]' If I add this to domain.c it

[Mono-dev] SIGILL in finally clause without catch

2008-04-22 Thread Christian Stümpel
In code I have to port from MS .NET to mono I observed several SIGILL crashes at points in code, where calls to external code are made within a try block followed by a finally but *without* a catch statement. try { unrar.dosomething();