Building squeak vm with quartz on Mac

Previous Topic Next Topic
 
classic Classic list List threaded Threaded
2 messages Options
Reply | Threaded
Open this post in threaded view
|

Building squeak vm with quartz on Mac

Mathieu SUEN
 
Hi,

I build the VM for Mac using the following option:
../platforms/unix/config/configure --with-quartz --without-x

Then I lunch the VM and get the error:
could not find display driver vm-display-X11; either:
   - check that /usr/local/lib/squeak/3.9-12/vm-display-X11.so  
exists, or
   - use the '-plugins <path>' option to tell me where it is, or
   - remove DISPLAY from your environment.


So I added the following option:
./squeak -vm display=Quartz ../sq3.10-7137dev07.08.1.image
could not find module vm-display-Quartz


How can I make it work?
Thanks
        Mth



Reply | Threaded
Open this post in threaded view
|

Re: Building squeak vm with quartz on Mac

Ian Piumarta
 
On Sep 1, 2007, at 1:43 PM, Mathieu Suen wrote:

> So I added the following option:
> ./squeak -vm display=Quartz ../sq3.10-7137dev07.08.1.image
> could not find module vm-display-Quartz

Try telling the VM explicitly where to look for plugins.  The option  
is -plugins and the argument is a path with %n represents the plugin  
name.  To run from within the build tree:

./squeak -plugins $PWD/%n/.libs -vm-display-Quartz your.image

Ian