pharo-vcs / iceberg

Iceberg is the main toolset for handling VCS in Pharo.
MIT License
134 stars 85 forks source link

MessageNotUnderstood: ExternalAddress>>platformSizeTAt: #1150

Open SabineMa opened 5 years ago

SabineMa commented 5 years ago

Platform Mac

I take a new Pharo 6.1 image curl https://get.pharo.org/61+vm | bash

Than I load Iceberg with the script https://github.com/pharo-vcs/iceberg#for-pharo-61

After loading I try to load OSSubprocess (from the correct location)

Metacello new
    configuration: 'OSSubprocess';
    repository: 'github://pharo-contributions/OSSubprocess:master/repository';
    version: #stable;
    load.

"MessageNotUnderstood: ExternalAddress>>platformSizeTAt:"

When I load Iceberg version 1.4.0 It works

estebanlm commented 5 years ago

last update of iceberg is incompatible with the UFFI version of Pharo6.1, we will need to do a back port (next week, I think). In the mean time, you can load an older version of iceberg instead the master :)

SabineMa commented 5 years ago

on unix I had other error messages (CompiledMethodTrailer dnu encodeNoTrailer). I found out that loading the wrong version of iceberg/tonel etc also was the reason on unix. Isn't this script wrong then? https://github.com/pharo-vcs/iceberg#for-pharo-61 Shouldn't there be written that an old version should be used? This problem did cost me several hours. Perhaps others, too?