Re: [Mono-dev] [PATCH] Add missing DateTimeOffset operators to XElement

2010-01-13 Thread Atsushi Eno
They are now in 2.6 branch too. Atsushi Eno On 2010/01/13 5:25, Tiaan Geldenhuys wrote: I'm glad you made it through the obstacle course in one piece, Atsushi! Sidestepping that tricky UIntXX case seems reasonable. What's the chance of a backport to the 2.6 branch?

[Mono-dev] Regression in gmcs (svn-head)

2010-01-13 Thread Leszek Ciesielski
Hi, between 07.01.2010 and 11.01.2010 gmcs built from svn head has regressed and is now reporting error CS0169: The private constant `Core.Configuration.ModifyConfig.filesSearchPattern' is never used on code private const string filesSearchPattern = *.ModifyConfig; //this constant is

Re: [Mono-dev] Re gression in gmcs (svn-head)

2010-01-13 Thread Stifu
For the record, someone else noticed this: http://old.nabble.com/Possible-regression-in-gmcs-with-private-const-member-variables.-ts27116843ef1367.html Leszek Ciesielski wrote: Hi, between 07.01.2010 and 11.01.2010 gmcs built from svn head has regressed and is now reporting error

Re: [Mono-dev] Re gression in gmcs (svn-head)

2010-01-13 Thread Marek Safar
Hi, For the record, someone else noticed this: http://old.nabble.com/Possible-regression-in-gmcs-with-private-const-member-variables.-ts27116843ef1367.html and I am working on the fix. Marek Leszek Ciesielski wrote: Hi, between 07.01.2010 and 11.01.2010 gmcs built from svn head

Re: [Mono-dev] Running MCS Tests on Windows

2010-01-13 Thread Marek Safar
Hi, I seem to be having a problem running the non-error tests for MCS on Windows. The error tests run (although some of them report errors). When I go into mcs/tests and run make run-test-local, I get the following error: The assembly mscorlib.dll was not found or could not be loaded. It

Re: [Mono-dev] illegal instruction

2010-01-13 Thread Kirby Zhou
I have encounted the same problem with both mono-2.4.3 and mono-2.6.1 My OS is RHEL-5.4 srf wrote: Further to this I found if I just run this : MONO_PATH=./../../class/lib/net_1_1:$MONO_PATH /disk2/mono-2.6.1/mono-2.6.1/runtime/mono-wrapper ./../../class/lib/net_1_1/msc.exe I get

[Mono-dev] Can't build Mono from trunk - 259 same errors: Cannot assign to 'this' because it is read-only

2010-01-13 Thread Alexander M. Batishchev
Hello. In the course of last few day I cannot build Mono from SVN trunk, last try on r149477. Getting tons of the same errors: CS1604: Cannot assign to `this' because it is read-only. Here is the full output: https://bugzilla.novell.com/show_bug.cgi?id=569915 Unfortunately, I haven't received a

[Mono-dev] difference in ilasm tool functionality between mono and .net

2010-01-13 Thread ptr
Hey all I have found that mono has its own ilasm tool that differs in functionality with the one that shipped with the .NET framework on windows. Specifically ilasm on windows has an option to generate pdb file as well. This is lacking in mono. We use ilasm tool to generate our dlls and because

Re: [Mono-dev] BufferedStream.ReadByte and WriteByte are extremely inefficient

2010-01-13 Thread Tom Philpot
Kornel, Alan Did these patches check out enough to commit to SVN? Thanks, Tom On Jan 11, 2010, at 4:18 PM, Tom Philpot wrote: Ah, yes. I forgot to check that m_buffer.Length == 0 is explicitly disallowed in the constructor, so yes, eliminating an extra if will speed things up. Here's

Re: [Mono-dev] Re gression in gmcs (svn-head)

2010-01-13 Thread Tom Philpot
This is evidently fixed in r149505. It might have been earlier, but at least it's working again. On Jan 13, 2010, at 4:29 AM, Marek Safar wrote: Hi, For the record, someone else noticed this: