Re: [Fwd: Re: [Mono-dev] Mono 1.1.9.1 Windows Installer Released]

2005-10-04 Thread Kornél Pál
Hi, sembdel is called only when an error occures so the build will not fail because of missing semdel. The real error is above semdel. But semdel should not be called on Windows. Kornél - Original Message - From: "Zoltan Varga" <[EMAIL PROTECTED]> To: "Wade Berrier" <[EMAIL PROTECTED]>

Re: [Mono-dev] Debugging Busted CIL

2005-10-04 Thread Jim Purbrick
> > Did you verify the assembly? > > > > Mono: pedump --verify code I'm now getting an interesting error from pedump: Error: Incompatible type Managed Pointer in store at 0x029a What I'm trying to do is store the result of a ldflda instruction. The StackBehaviourPush of the ldflda instructio

Re: [Mono-dev] Debugging Busted CIL

2005-10-04 Thread Jim Purbrick
> Is is possible to store and load Managed Pointers in > CIL? How? Sorry, should have googled a bit more before my last post. Looks like I can store a Managed Pointer in a local, but not a field :-( http://dotnet.di.unipi.it/EcmaSpec/PartitionIII/cont1.html#_Toc526908860 Looks like I won't be a

[Mono-dev] Problem with MonoDevelop Code Completion

2005-10-04 Thread Hubert FONGARNAND
I've this error, with monodevelop since this morning when it tries to generate pidb files: 2005-10-04 11:34:39,077 [-1257473104] ERROR MonoDevelop.Services.ILoggingService [(null)] - System.NullReferenceException: Object reference not set to an instance of an object in <0x0> in <0x001c2>

[Mono-dev] Re: Uncompilable mcs in daily packages

2005-10-04 Thread Tomas Kalibera
Hi, I've attached logs for version mono-1.1.9.20051003, the older look simmilar. I'm working on the automated sending of such logs, Tomas Raja R Harinath wrote: Hi, Tomas Kalibera <[EMAIL PROTECTED]> writes: there is a new problem with compilation of daily packages, the mcs compiler

Re: [Mono-dev] Mono.Unix - UnixDirectoryInfo.IsSymbolyicLinkquestion

2005-10-04 Thread Paddy Joy
Thanks for the link to the code, I think I can figure out the rest of my questions from there :-) Paddy On Tue, 2005-10-04 at 09:37 +1000, Paddy Joy wrote: Thanks for the background info and help, it all makes a lot more sense now. I'm using UnixSymbolicLinkInfo now and getting the correct

[Mono-dev] Embedded Mono - Structures and internal C methods

2005-10-04 Thread Tony McGrath
I have been trying, with little success, to work out how to pass a struct from C# into a C routine that has been registered with mono_add_internal_call(). Specifically, the struct has to be modified within the C routine and those changes need to be reflected back into the managed C# struct. I a

Re: [Mono-dev] Re: Uncompilable mcs in daily packages

2005-10-04 Thread Marek Safar
Hello, I've attached logs for version mono-1.1.9.20051003, the older look simmilar. I'm working on the automated sending of such logs, Do `make clean'. Marek Hi, Tomas Kalibera <[EMAIL PROTECTED]> writes: there is a new problem with compilation of daily packages, the mcs compiler m

[Mono-dev] Win32 build broken

2005-10-04 Thread Kornél Pál
Hi, The error is the following: file-io.c: In function `get_error_from_g_file_error': file-io.c:256: error: `ETXTBSY' undeclared (first use in this function) file-io.c:256: error: (Each undeclared identifier is reported only once file-io.c:256: error: for each function it appears in.) Kornél __

Re: [Mono-dev] Regarding MONO on Embedded Device.

2005-10-04 Thread Andrew Arnott
Wow.  I didn't think mono could get so small.  For what it's worth, for the compiling experience, you might find a blog I wrote a useful reference as you build mono for your embedded system as I just recently had to do this myself. On 10/3/05, Paolo Molaro <[EMAIL PROTECTED]> wrote:> On 09/30/05 co

[Mono-dev] MasterInfos cannot be downloaded

2005-10-04 Thread Kornél Pál
Hi, http://www.mono-project.com/Resources references http://www.go-mono.com/archive/masterinfos/1.1/ and http://www.go-mono.com/archive/masterinfos/2.0/ but these directories cannot be browsed. There should be either indexs in these directories or the links should point to files rather than direc

Re: [Mono-dev] Debugging Busted CIL

2005-10-04 Thread Mike Welham
Hi Jim Looks like I can store a Managed Pointer in a local, but not a field :-( If it were allowed then you could do nasty things like storing the address of a local variable in a field, and when the local's stack frame is destroyed there'd be a dangling pointer. Do any other ops push Man

Re: [Mono-dev] Win32 build broken

2005-10-04 Thread Atsushi Eno
Hi, I made a quick build fix for r51154. Atsushi Eno Kornél Pál wrote: Hi, The error is the following: file-io.c: In function `get_error_from_g_file_error': file-io.c:256: error: `ETXTBSY' undeclared (first use in this function) file-io.c:256: error: (Each undeclared identifier is reported on

Re: [Fwd: Re: [Mono-dev] Mono 1.1.9.1 Windows Installer Released]

2005-10-04 Thread Zoltan Varga
Hi, The problem is not with System.XML, but with the runtime itself. The line which compiles System.XML is the first time the newly compiled runtime is executed, all prior commands use the locally installed mcs and the locally installed runtim

Re: [Mono-dev] Re: Uncompilable mcs in daily packages

2005-10-04 Thread Tomas Kalibera
Marek Safar wrote: I've attached logs for version mono-1.1.9.20051003, the older look simmilar. I'm working on the automated sending of such logs, Do `make clean'. I'm building in a new tree; Hari made some patches today that should fix it Tomas _

Re: [Mono-dev] Win32 build broken

2005-10-04 Thread Kornél Pál
Hi, Thanks for the fix. ETXTBSY seems to be a POSIX error code while all the other error codes are Win32 error codes so I think this is an error in the code itself rather than a missed #if !PLATFORM_WIN32. According to the documentation of ETXTBSY it is an error that cannot occur on Win32 becaus

Re: [Mono-dev] monodoc os x

2005-10-04 Thread Gary Smithrud
Umm...I would say that it is looking for a font on your system that it could not find and doesn't know what to do (probably one of the Mac standard stuff, but it might be in the additional font package). Check to see if Verdana is in your font chooser. If that's not the problem, then hope

[Mono-dev] [PATCH] Monodoc. Fix rendering of masteroverview for monodocer output

2005-10-04 Thread Mario Sopena
Hey, I don't know if someone has noticed that the master overview of the docs produced by monodocer (and loaded via the --edit command) doesn't show at all. Also, the link at the home page for that content is broken. This patch fix those issues, although the master overview showed is just a l

[Mono-dev] System.Management class

2005-10-04 Thread marcos rocha
hi, does anyone knows when will System.Management class be usefull ??? thanks. Marcos ___ Novo Yahoo! Messenger com voz: ligações, Yahoo! Avatars, novos emoticons e muito mais. Instale agora! www.y

Re: [Mono-dev] Embedded Mono - Structures and internal C methods

2005-10-04 Thread Paolo Molaro
On 10/04/05 Tony McGrath wrote: > I have been trying, with little success, to work out how to pass a > struct from > C# into a C routine that has been registered with mono_add_internal_call(). > > Specifically, the struct has to be modified within the C routine and those > changes need to be refl

Re: [Mono-dev] Debugging Busted CIL

2005-10-04 Thread Paolo Molaro
On 10/04/05 Jim Purbrick wrote: > The StackBehaviourPush of the ldflda instruction > returns pushi, so I try to store the result in an > int32, but MSDN > (http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfsystemreflectionemitopcodesclassldfldatopic.asp) > and the ECM

Re: [Mono-dev] Regarding MONO on Embedded Device.

2005-10-04 Thread Paolo Molaro
On 10/04/05 Andrew Arnott wrote: > Wow. I didn't think mono could get so small. For what it's worth, for the > compiling experience, you might find a blog I > wrotea > useful reference as you build mono for your embed

Re: [Mono-dev] Debugging Busted CIL

2005-10-04 Thread Jim Purbrick
> > Looks like I can store a Managed Pointer in a > > local, but not a field :-( > > Right, storing in a field would have both security > and performance effects in the GC, so it's not > allowed. OK, to solve that problem it looks as though the best approach is to make sure the value of the fie

Re: [Fwd: Re: [Mono-dev] Mono 1.1.9.1 Windows Installer Released]

2005-10-04 Thread Wade Berrier
On Tue, 2005-10-04 at 15:14 +0200, Zoltan Varga wrote: > Hi, > > The problem is not with System.XML, but with the runtime itself. The > line which compiles > System.XML is the first time the newly compiled runtime is executed, > all prior comm

Re: [Fwd: Re: [Mono-dev] Mono 1.1.9.1 Windows Installer Released]

2005-10-04 Thread Kornél Pál
From: Wade Berrier So it probably turns out that System.XML is the first dll that gets compiled from the mini wrapper? Yes, it is, but this was mentioned by Zoltán in the message you replyed to: From: Zoltan Varga The line which compiles System.XML is the first time the newly compiled runtime

Re: [Mono-dev] Debugging Busted CIL

2005-10-04 Thread Jim Purbrick
> Is there an easy way to go from the pointer to a > value? ldobj (must...google...before...posting!) Cheers, Jim. ___ Yahoo! Messenger - NEW crystal clear PC to PC calling worldwide with voicemail h

Re: [Fwd: Re: [Mono-dev] Mono 1.1.9.1 Windows Installer Released]

2005-10-04 Thread Wade Berrier
On Tue, 2005-10-04 at 18:36 +0200, Kornél Pál wrote: > > From: Wade Berrier > > So it probably turns out that System.XML is the first dll that gets > > compiled from the mini wrapper? > > Yes, it is, but this was mentioned by Zoltán in the message you replyed to: > > >> From: Zoltan Varga > >> Th

Re: [Mono-dev] Regarding MONO on Embedded Device.

2005-10-04 Thread Andrew Arnott
mkbundle... That's an incredible tool.  I didn't know it existed.  Way to go, guys!  I thought I had to write at least a 50+ line C program in order to do that kind of thing.  That Mono does it for me is great! Ya, it was a 9MB+ executable for just hello world. It seems rather large to me.  But I'

[Mono-dev] Can't install Mono 1.1.9.1 from sources!

2005-10-04 Thread Vadim B. Guzev
Hello, I was trying to install Mono 1.1.9.1 from sources as usual: ./configure --prefix=/home/vadim/mono/m-1.1.9.1 make make install But since this new version (1.1.9.1) I'm getting the following error (when running 'make install'): --8<-- make[7]

Re: [Mono-dev] Embedded Mono - Structures and internal C methods

2005-10-04 Thread Tony McGrath
Paolo Molaro wrote: On 10/04/05 Tony McGrath wrote: I have been trying, with little success, to work out how to pass a struct from C# into a C routine that has been registered with mono_add_internal_call(). Specifically, the struct has to be modified within the C routine and those changes

Re: [Fwd: Re: [Mono-dev] Mono 1.1.9.1 Windows Installer Released]

2005-10-04 Thread Kornél Pál
Are you able to build? If so, are you using the latest cygwin? What deps are you using? I tried to reproduce you build environment: I installed a brand new basic cygwin (latest installer, latest packages) only with default components and Mono requirements selected. (See later the exact list o

Re: [Fwd: Re: [Mono-dev] Mono 1.1.9.1 Windows Installer Released]

2005-10-04 Thread Wade Berrier
Hi Kornél, Thanks for the details! I guess the only question I have is whether the 1.1.9.1 tarball works for you in this environment. Zoltan checked in a libtool patch into trunk that fixes the issues I was having: http://lists.ximian.com/pipermail/mono-patches/2005-October/065089.html Sorry t

Re: [Mono-dev] Arrays in a loop?

2005-10-04 Thread SigmaX
Gaurav Vaish (Mono) wrote: lms_table[i, 0] = Convert.ToSingle(row[keytext]); lms_table[i, 1] = Convert.ToSingle(row["L"]); lms_table[i, 2] = Convert.ToSingle(row["M"]); lms_table[i, 3] =

Re: [Mono-dev] Arrays in a loop?

2005-10-04 Thread Jackson Harper
On Tue, 2005-10-04 at 22:41 -0400, SigmaX wrote: > Gaurav Vaish (Mono) wrote: > >>lms_table[i, 0] = > >>Convert.ToSingle(row[keytext]); > >>lms_table[i, 1] = Convert.ToSingle(row["L"]); > >>lms_table[i, 2] = Con

Re: [Mono-dev] Regarding MONO on Embedded Device.

2005-10-04 Thread Mart Roosmaa
Hi, On 04/10/05, Andrew Arnott <[EMAIL PROTECTED]> wrote: > Ya, it was a 9MB+ executable for just hello world. It seems rather large to > me. But I'll review the tips you already gave, Paolo, and see what I can > knock off. You could try some executable packer, like UPX (http://upx.sourceforge.n