Re: [Pharo-project] Problem loading Exupery on PharoCore 1.0

2010-04-06 Thread Javier Pimás
Not sure with this either, but I think it comes from a bug related to squeak and pharo syntax. Pharo admits a slightly modified Squeak syntax, probably this code that didn't compile was commited in Squeak and was perfectly valid there. When this happens, you get that window indicating the syntax er

Re: [Pharo-project] Problem loading Exupery on PharoCore 1.0

2010-04-06 Thread laurent laffont
2010/4/5 Javier Pimás > maybe you could try separating with spaces the elements of the array, I > think I had a similar problem once, don't know if it is the case: > > #( (block 1 (mov (literalVariableAddress 10) t1) ) ) > Thanks Javier. I just have to put a space between mov and ( (really s

Re: [Pharo-project] Problem loading Exupery on PharoCore 1.0

2010-04-05 Thread Bryce Kampjes
You can safely ignore this. Mondrian and GraphViz is only used for inspectors to view the generated code and intermediate languages. The easiest way to resolve them would be to load GraphViz and Mondrian from the Exupery repository. It should be easy to port Exupery forward to the latest Mondrian

Re: [Pharo-project] Problem loading Exupery on PharoCore 1.0

2010-04-04 Thread Javier Pimás
maybe you could try separating with spaces the elements of the array, I think I had a similar problem once, don't know if it is the case: #( (block 1 (mov (literalVariableAddress 10) t1) ) ) Regards, Javier. On Sun, Apr 4, 2010 at 9:49 AM, Alexandre Bergel wrote: > Maybe a non-vis

Re: [Pharo-project] Problem loading Exupery on PharoCore 1.0

2010-04-04 Thread Alexandre Bergel
Maybe a non-visible character? Cheers, Alexandre On 4 Apr 2010, at 04:32, laurent laffont wrote: I do: Gofer new squeaksource: 'MetacelloRepository'; package: 'ConfigurationOfMondrian'; load.. ConfigurationOfMondrian project latestVersion load. Then Gofer new

Re: [Pharo-project] Problem loading Exupery on PharoCore 1.0

2010-04-04 Thread Alexandre Bergel
Laurent, I separated MOGraphVizLayout from the main Mondrian distribution. You will find this package in the Mondrian squeaksource repository. cheers, Alexandre On 4 Apr 2010, at 04:06, laurent laffont wrote: Hi, I want to try to build Exupery VM. On PharoCore 1.0 I do: Gofer new

Re: [Pharo-project] Problem loading Exupery on PharoCore 1.0

2010-04-04 Thread laurent laffont
I do: Gofer new squeaksource: 'MetacelloRepository'; package: 'ConfigurationOfMondrian'; load.. ConfigurationOfMondrian project latestVersion load. Then Gofer new squeaksource: 'Exupery'; package: 'Exupery'; load. ==> Syntax Error testLiteralVariableAddress source := MedMethod createIntermed

Re: [Pharo-project] Problem loading Exupery on PharoCore 1.0

2010-04-04 Thread laurent laffont
OK Thanks. I will try. Would be cool to have a ConfigurationOfExupery :). Laurent Laffont On Sun, Apr 4, 2010 at 10:19 AM, Tudor Girba wrote: > Hi Laurent, > > Something is wrong. MOAbstractLayout and MOGraphVizLayout come from > Mondrian. Were these by mistake somehow added as dependencies to

Re: [Pharo-project] Problem loading Exupery on PharoCore 1.0

2010-04-04 Thread Tudor Girba
Aha, in this case, it looks like the dependency was added only to Mondrian-GraphViz, but not to Mondrian. Mondrian-GraphViz inherits from Mondrian, so Mondrian should be loaded first: Gofer new squeaksource: 'Mondrian'; package: 'Mondrian'; load Doru On 4 Apr 2010, a

Re: [Pharo-project] Problem loading Exupery on PharoCore 1.0

2010-04-04 Thread Lukas Renggli
AFAIK, Exupery uses Mondrian to visualize code generation/optimization/... Lukas On 4 April 2010 10:19, Tudor Girba wrote: > Hi Laurent, > > Something is wrong. MOAbstractLayout and MOGraphVizLayout come from > Mondrian. Were these by mistake somehow added as dependencies to Exupery? > > Doru >

Re: [Pharo-project] Problem loading Exupery on PharoCore 1.0

2010-04-04 Thread Tudor Girba
Hi Laurent, Something is wrong. MOAbstractLayout and MOGraphVizLayout come from Mondrian. Were these by mistake somehow added as dependencies to Exupery? Doru On 4 Apr 2010, at 10:06, laurent laffont wrote: Hi, I want to try to build Exupery VM. On PharoCore 1.0 I do: Gofer new

[Pharo-project] Problem loading Exupery on PharoCore 1.0

2010-04-04 Thread laurent laffont
Hi, I want to try to build Exupery VM. On PharoCore 1.0 I do: Gofer new squeaksource: 'MetacelloRepository'; package: 'ConfigurationOfVMMaker'; load. (ConfigurationOfVMMaker project version: '1.2') load. Then Gofer new squeaksource: 'Exupery'; package: 'Exupery'; load. I have this error: T