Re: [Mono-dev] Repeat builds of core assemblies

2014-05-02 Thread Rodrigo B. de Oliveira
kudos to you, Miguel! On Fri, May 2, 2014 at 5:27 PM, Miguel de Icaza wrote: > Hello guys, > > Just a follow up to my previous posting on this. > > I have managed to untangle this mess, and now I have a clean build that does > not involve overwriting assemblies. > > In addition to untangling this

Re: [Mono-dev] Recent C# compiler changes

2011-02-03 Thread Rodrigo B. de Oliveira
On Thu, Feb 3, 2011 at 2:06 PM, Miguel de Icaza wrote: > ... > Is it possible to instead of using a set of preconfigured numbers for > the SDK, that we could provide a string, so that: > > -sdk:STRING > > Makes mcs look in $prefix/lib/mono/STRING > > That way we do not hardcode the constant, and w

Re: [Mono-dev] Method code injection

2010-03-13 Thread Rodrigo B. de Oliveira
Hey Amir! Yes, you can use Mono.Cecil: import System import Mono.Cecil import Mono.Cecil.Cil pathToAssembly = "/tmp/test.exe" asm = AssemblyFactory.GetAssembly(pathToAssembly) module = asm.MainModule method = module.Types["Program"].Methods.GetMethod("Main")[0]

Re: [Mono-dev] Building boo 0.9.2-3383 or 0.9.3-3457 problem

2010-02-21 Thread Rodrigo B. de Oliveira
Hi! On Sat, Feb 20, 2010 at 9:21 PM, Paul wrote: > ... > Any ideas if it's me or not? > It's a bug: http://jira.codehaus.org/browse/BOO-1282 The workaround is to remove any existing Boo.Lang.Extensions from the gac before building. ___ Mono-devel-list

Re: [Mono-dev] Passing values into the default.build boo script

2006-06-08 Thread Rodrigo B. de Oliveira
On 6/7/06, PFJ <[EMAIL PROTECTED]> wrote: Hi, Hi! Is there a way to pass values into the default.build script for boo-0.7.6.2237? Yes, you can use -D:propertyName=propertyValue and override any properties you want. I'm packaging it for Fedora Extras... Great. Thanks! -- bamboo *** See

Re: [Mono-dev] Please, share your .Net1.1 and 2.0 support and #if directives experience

2006-02-10 Thread Rodrigo B. de Oliveira
On 2/10/06, Francisco Figueiredo Jr. <[EMAIL PROTECTED]> wrote: > -BEGIN PGP SIGNED MESSAGE- > Hash: SHA1 > > > > Hi all, > Hey! > Npgsql developers are going to start adding 2.0 functionality and > interfaces to Npgsql. > > We discussed about it and we decided to have another directory i

Re: [Mono-dev] C# and SWT

2005-10-20 Thread Rodrigo B. de Oliveira
On 10/20/05, Elan Feingold <[EMAIL PROTECTED]> wrote: > > ... And then there's the IKVM project, which seems > to be able to run Eclipse (and thus SWT) under Mono's VM -- but I'm not sure > if that means I can write C# code that uses SWT. > Yes. It works. bamboo _

SOLVED: Re: [Mono-devel-list] Patch for generating debug info in System.Reflection.Emit

2005-08-01 Thread Rodrigo B. de Oliveira
On 7/28/05, Rodrigo B. de Oliveira <[EMAIL PROTECTED]> wrote: > On 7/28/05, Rodrigo B. de Oliveira <[EMAIL PROTECTED]> wrote: > > ... > > I'm getting off-by-one errors only with raise/throw statements: > > > > The behavior is actually a little more comp

Re: [Mono-devel-list] Patch for generating debug info in System.Reflection.Emit

2005-07-28 Thread Rodrigo B. de Oliveira
On 7/28/05, Rodrigo B. de Oliveira <[EMAIL PROTECTED]> wrote: > ... > I'm getting off-by-one errors only with raise/throw statements: > The behavior is actually a little more complex but still predictable. The stack trace entry for the raise line is always the line of the n

Re: [Mono-devel-list] Patch for generating debug info in System.Reflection.Emit

2005-07-28 Thread Rodrigo B. de Oliveira
On 5/17/05, Lluis Sanchez <[EMAIL PROTECTED]> wrote: > Hi! > Hi again! > This patch adds some basic support for generating debug info in SRE. > I'm getting off-by-one errors only with raise/throw statements: def foo(): raise "foo" return 1 def bar(): foo() bar() Unhandled Exce

[Mono-devel-list] [PATCH] params attribute missing in System.Array.GetValue and System.Array.SetValue

2005-07-12 Thread Rodrigo B. de Oliveira
Could someone pls review and commit the patch attached to the following bugzilla issue: http://bugzilla.ximian.com/show_bug.cgi?id=75516 Thanks! -- bamboo http://blogs.codehaus.org/people/bamboo/ Got objects? http://www.db4o.com/ ___ Mono-devel-list ma

[Mono-devel-list] debugger module does not build

2005-05-30 Thread Rodrigo B. de Oliveira
../frontend/Interpreter.cs(101) error CS0117: `Mono.Debugger.ThreadManager' does not contain a definition for `TargetOutputEvent' After a fresh checkout. Everything (mono/mcs/debugger) are uptodate (rev. 45194). Rodrigo ___ Mono-devel-list mailing list

Re: [Mono-devel-list] Patch for generating debug info in System.Reflection.Emit

2005-05-26 Thread Rodrigo B. de Oliveira
Hi, I've just built the latest mono/mcs/debugger from the repository and although debugging information is being emitted now, the runtime and the debugger cannot make use of it. I get no source information on stack traces and mdb is unable to display source lines. The only important setting I've

Re: [Mono-devel-list] Patch for generating debug info in System.Reflection.Emit

2005-05-22 Thread Rodrigo B. de Oliveira
is this already in? On 5/18/05, Ben Maurer <[EMAIL PROTECTED]> wrote: > Miguel asked me to look at the memory impact of this patch. > ... > So, this is probably ok. > > -- Ben > ___ Mono-devel-list mailing list Mono-devel-list@lists.ximian.com http

Re: [Mono-devel-list] Patch for generating debug info in System.Reflection.Emit

2005-05-17 Thread Rodrigo B. de Oliveira
On 5/17/05, Lluis Sanchez <[EMAIL PROTECTED]> wrote: > Hi! > > This patch adds some basic support for generating debug info in SRE. It > implements ModuleBuilder.DefineDocument and > ILGenerator.MarkSequencePoint, and should be enough for most of > compilers. With this patch, Boo and IKVM can gene

Re: [Mono-devel-list] latest gtk# svn installs 2.0 assemblies and no 1.0 assemblies?

2005-03-28 Thread Rodrigo B. de Oliveira
monodoc works fine with the latest gtk#. You just have to make monodoc think gtk# 1.0 is installed: cd $MONO_HOME/lib/pkgconfig for m in gtk gtkhtml glade; do sudo ln -s $module-sharp-2.0.pc $module-sharp.pc done On Mon, 28 Mar 2005 11:48:23 -0300, Rafael Teixeira <[EMAIL P

[Mono-devel-list] latest gtk# svn not working when compiled with latest mono/gmcs

2005-03-27 Thread Rodrigo B. de Oliveira
Hey, I've just confirmed the same behavior on a fresh ubuntu system with the latest svn sources: ** ERROR **: file marshal.c: line 6151 (mono_marshal_get_managed_wrapper): should not be reached aborting... Any ideas? Rodrigo On Fri, 25 Mar 2005 21:03:52 -0300, Rodrigo

Re: [Mono-devel-list] Embedding Mono in a Virtual World

2005-03-19 Thread Rodrigo B. de Oliveira
You might be able to cook up something with serializable objects and lightweight threads based on generators (yield) But this is just food for though... On Fri, 18 Mar 2005 18:30:31 + (GMT), Jim Purbrick <[EMAIL PROTECTED]> wrote: > Is it possible to save and load mono stacks? > > I'm cu

Re: [Mono-devel-list] Pascal Compiler Thoughts

2005-03-15 Thread Rodrigo B. de Oliveira
Have you considered adopting boo[1] as the compiler infrastructure? I'd love to cooperate with you and make sure the boo compiler infrastructure can accommodate the needs of object pascal. [1] http://boo.codehaus.org/ On Mon, 14 Mar 2005 12:42:11 -0800, Grant Hess <[EMAIL PROTECTED]> wrote: > I