forked from pharo-project/pharo-vm
-
Notifications
You must be signed in to change notification settings - Fork 0
Home
Massimo Nocentini edited this page Oct 12, 2023
·
5 revisions
Welcome to the pharo-vm wiki!
To compile under a Windows 64 bit installation, do the following steps:
- download https://www.cygwin.com/setup-x86_64.exe
- run the installer installing in the default location
C:\cygwin64for all users (select a near proxy to speed up) - On the main panel search and mark the following packages for installation:
-
cmake(3.20.0-1) -
make(4.4.1-2) -
zip(3.0-13) -
unzip(6.0-18) -
mingw64-x86_64-clang(8.0.1-1) -
wget(1.21.4-1) -
git(2.39.0-1) -
autoconf2.5(2.69-5) -
autoconf(15-1) -
automake1.16(1.16.5-1) -
automake(11-1) -
libtool(2.4.7-1) -
patch(2.7.6-17) -
curl(8.4.0-1)
-
- Run the bat file
C:\cygwin64\Cygwin.batand typemkdir Developerand thecd Developer. - type
git clone https://github.com/pharo-project/pharo-vm.gitto clone the vm repo. - type
cmake -S pharo-vm/ -B pharo-vm-build -DPHARO_DEPENDENCIES_PREFER_DOWNLOAD_BINARIES=TRUE. - type
cmake --build pharo-vm-build/ --target install, if all succeed you will have the executable inpharo-vm-build\build\dist\. - type
mkdir -p images/120and thencd images/120. - type
curl https://get.pharo.org/64/120 | bashto download just a fresh image. - open the executable
Pharo.exeand point to the newly downloaded imageimages/120/Pharo.image, that should open a clean Pharo environment.