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:

This package depends on the following classes:
����MOAbstractLayout
You must resolve these dependencies before you will be able to load these definitions:��
����MOGraphVizLayout
����MOGraphVizLayout>>doExecute:
����MOGraphVizLayout>>findTopLeftCorner:


I suppose I need��GraphViz package

Gofer new��
squeaksource: 'GraphViz';
package: 'GraphViz';
load.

But when I load it I have a Syntax Error:

runWithSystemFramework: string
<> expected ->apicall: short 'system' (char*) module: 'System.framework'>
^ self externalCallFailed��

Laurent Laffont