Re: [Pharo-dev] recompiling all classes and traits is slow (at least on windows)

2015-11-22 Thread Alexandre Bergel
Wow, I did not know you can close and open source files. Everyday there is something to learn. Cheers, Alexandre > On Nov 22, 2015, at 8:16 AM, Max Leske wrote: > > If you only need it for yourself you could probably speed things up by doing > > Smalltalk

Re: [Pharo-dev] recompiling all classes and traits is slow (at least on windows)

2015-11-22 Thread Marcus Denker
> On 22 Nov 2015, at 10:42, Alexandre Bergel wrote: > > Wow, I did not know you can close and open source files. > Everyday there is something to learn. > It does not look like something you are supposed to know… or do. There are multiple things that are just not

Re: [Pharo-dev] recompiling all classes and traits is slow (at least on windows)

2015-11-22 Thread Nicolai Hess
That is better, 5 minutes instead of 15 ! 2015-11-22 12:16 GMT+01:00 Max Leske : > If you only need it for yourself you could probably speed things up by > doing > > Smalltalk closeSourceFiles. [ compile… ] ensure: [ Smalltalk > openSourceFiles ]. > > That will prevent reads

Re: [Pharo-dev] recompiling all classes and traits is slow (at least on windows)

2015-11-22 Thread Max Leske
If you only need it for yourself you could probably speed things up by doing Smalltalk closeSourceFiles. [ compile… ] ensure: [ Smalltalk openSourceFiles ]. That will prevent reads and writes from and to the changes / sources files. Of course, that doesn’t solve the problem in general. Cheers,

[Pharo-dev] recompiling all classes and traits is slow (at least on windows)

2015-11-21 Thread Nicolai Hess
recompiling all classes -> ~ 2 minutes recompiling all traits -> ~ 13 minutes is there any way to recompile all without removing and adding all trait methods for trait users ? Because this touches the changes file (although recompiling shouldn't change the source) and touching the changes file