Re: [Pharo-dev] macOS Sierra support

2017-07-15 Thread Milan Vavra via Pharo-dev
--- Begin Message --- Pharo 6.0 on macOS Sierra (10.12.5) > Are you in macOS sierra? > Due to changes in security policies, you will need to put > the VM at /Applications folder. > We are working to fix this temporary inconvenient. What needs to be done on macOS Sierra (10.12.5) after download

Re: [Pharo-dev] [Vm-dev] multiple crashes on macOS Sierra

2017-05-28 Thread Milan Vavra via Pharo-dev
--- Begin Message --- > I am actually running under a VM I built because that one is not > mysteriously crashing and as I have an assert and debug version, I hope > to find the reason why this happens. If you have mysterious crashes in a release build that stop when you switch to a debug build,

Re: [Pharo-dev] [Vm-dev] multiple crashes on macOS Sierra

2017-05-28 Thread Milan Vavra via Pharo-dev
--- Begin Message --- > I hope to find the reason why this happens. Good luck and, of course, if the problem goes away by using a custom built debug build -- there's more fun in store trying to find out if/what goes wrong with the optimizations used in the release build. Turning off

Re: [Pharo-dev] Class syntax brainstorming

2017-05-22 Thread Milan Vavra via Pharo-dev
--- Begin Message --- >ClassDefinition new > superclass: Object; "optional. If not specified, Object by default ;-)" > name: #A; "optional and create an anonymous class if not specified" > instVars: 'a b c'; > traits: {TEquality}; > package: 'Plop'; >