Unable to compile myself Pharo

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

Unable to compile myself Pharo

Garreau, Alexandre
I need Pharo soon for my studies, and since it’s not packaged for debian
(how sad for something requiring bootstraping hence binaries :/) I
wanted to compile it, but (please tell me what additional informations I
could give you, I’m under Debian GNU/Linux 32bits for now) since then:

galex-713@portable:~/doc/comp/src/pharo$ make
./pharo bootstrapImage.image ./bootstrap/scripts/bootstrap.st --ARCH=32 --BUILD_NUMBER=1 --quit
pthread_setschedparam failed: Operation not permitted
This VM uses a separate heartbeat thread to update its internal clock
and handle events.  For best operation, this thread should run at a
higher priority, however the VM was unable to change the priority.  The
effect is that heavily loaded systems may experience some latency
issues.  If this occurs, please create the appropriate configuration
file in /etc/security/limits.d/ as shown below:

cat <<END | sudo tee /etc/security/limits.d/pharo.conf
*      hard    rtprio  2
*      soft    rtprio  2
END

and report to the pharo mailing list whether this improves behaviour.

You will need to log out and log back in for the limits to take effect.
For more information please see
https://github.com/OpenSmalltalk/opensmalltalk-vm/releases/tag/r3732#linux
'Errors in script loaded from /home/galex-713/doc/comp/src/pharo/bootstrap/scripts/bootstrap.st'
Error: Must provide VERSION_INFO in the form of a git describe --long
PBBootstrap class(Object)>>error:
[ self
        error: 'Must provide VERSION_INFO in the form of a git describe --long' ] in PBBootstrap class>>fromCommandLine in Block: [ self...
OrderedCollection(Collection)>>detect:ifFound:ifNone:
CommandLineArguments>>longOptionAt:ifAbsent:
CommandLineArguments>>optionAt:ifAbsent:
PBBootstrap class>>fromCommandLine
UndefinedObject>>DoIt
OpalCompiler>>evaluate
DoItChunk>>importFor:
[ :declaration |
requestor ifNotNil: [ requestor contents: declaration contents ].
value := declaration importFor: requestor ] in CodeImporter>>evaluate in Block: [ :declaration | ...
OrderedCollection>>do:
CodeImporter>>evaluate
[ codeImporter evaluate ] in STCommandLineHandler>>installSourceFile: in Block: [ codeImporter evaluate ]
BlockClosure>>on:do:
STCommandLineHandler>>handleErrorsDuring:reference:
STCommandLineHandler>>installSourceFile:
[ :reference | self installSourceFile: reference ] in [ sourceFiles do: [ :reference | self installSourceFile: reference ] ] in STCommandLineHandler>>installSourceFiles in Block: [ :reference | self installSourceFile: reference ]...etc...
OrderedCollection>>do:
[ sourceFiles do: [ :reference | self installSourceFile: reference ] ] in STCommandLineHandler>>installSourceFiles in Block: [ sourceFiles do: [ :reference | self installSourc...etc...
BlockClosure>>ensure:
STCommandLineHandler>>installSourceFiles
STCommandLineHandler>>activate
STCommandLineHandler class(CommandLineHandler class)>>activateWith:
[ aCommandLinehandler activateWith: commandLine ] in PharoCommandLineHandler(BasicCommandLineHandler)>>activateSubCommand: in Block: [ aCommandLinehandler activateWith: commandLine ]
BlockClosure>>on:do:
PharoCommandLineHandler(BasicCommandLineHandler)>>activateSubCommand:
PharoCommandLineHandler(BasicCommandLineHandler)>>handleSubcommand
PharoCommandLineHandler(BasicCommandLineHandler)>>handleArgument:
[ self
        handleArgument:
                (self arguments
                        ifEmpty: [ '' ]
                        ifNotEmpty: [ :arguments | arguments first ]) ] in PharoCommandLineHandler(BasicCommandLineHandler)>>activate in Block: [ self...
BlockClosure>>on:do:
Makefile:125 : la recette pour la cible « bootstrap-cache/bootstrap.image » a échouée
make: *** [bootstrap-cache/bootstrap.image] Erreur 1
galex-713@portable:~/doc/comp/src/pharo$

Thank you for any help!

Reply | Threaded
Open this post in threaded view
|

Re: Unable to compile myself Pharo

Garreau, Alexandre
Le 28/11/2018 à 11h17, Garreau, Alexandre a écrit :

> This VM uses a separate heartbeat thread to update its internal clock
> and handle events.  For best operation, this thread should run at a
> higher priority, however the VM was unable to change the priority.  The
> effect is that heavily loaded systems may experience some latency
> issues.  If this occurs, please create the appropriate configuration
> file in /etc/security/limits.d/ as shown below:
>
> cat <<END | sudo tee /etc/security/limits.d/pharo.conf
> *      hard    rtprio  2
> *      soft    rtprio  2
> END
>
> and report to the pharo mailing list whether this improves behaviour.

Btw changing this didn’t improve anything until then, since build still
fails (but the error disappeared).

Sorry to clutter with a second mail.

Reply | Threaded
Open this post in threaded view
|

Re: Unable to compile myself Pharo

cedreek
Hi Alexandre,

Do you really want to « bootstrap » an image ? You don’t need to (just use an official image). 

Try here, either through the launcher or the curl command line:

https://pharo.org/download (Linux for thé launcher or at the end of the page from the command line. 

HTH,

Cedrick

Envoyé de mon iPhone

Le 28 nov. 2018 à 11:23, Garreau, Alexandre <[hidden email]> a écrit :

Le 28/11/2018 à 11h17, Garreau, Alexandre a écrit :
This VM uses a separate heartbeat thread to update its internal clock
and handle events.  For best operation, this thread should run at a
higher priority, however the VM was unable to change the priority.  The
effect is that heavily loaded systems may experience some latency
issues.  If this occurs, please create the appropriate configuration
file in /etc/security/limits.d/ as shown below:

cat <<END | sudo tee /etc/security/limits.d/pharo.conf
*      hard    rtprio  2
*      soft    rtprio  2
END

and report to the pharo mailing list whether this improves behaviour.

Btw changing this didn’t improve anything until then, since build still
fails (but the error disappeared).

Sorry to clutter with a second mail.

Reply | Threaded
Open this post in threaded view
|

Re: Unable to compile myself Pharo

tesonep@gmail.com
Hi Alexandre, 
  
  as Cédrick said there is no need to generate a new image from scratch. 
Pharo is basically divided in two parts an image (that is the one that it is generated by the process you want to run) and a virtual machine to run the image. 
The image is multi-OS you can download a 32 bits image and run it in any of the supported operating systems.
Usually the VM will run in different OSs, there is a VM for  Mac OS, one for Windows and one for Unix(es). 
The VM came in 32 and 64 bits flavors. 

You should try to run the pre built version of the pack. And again using the Pharo Launcher will be the simpler option.

Cheers,
Pablo


On Wed, Nov 28, 2018 at 1:02 PM Cédrick Béler <[hidden email]> wrote:
Hi Alexandre,

Do you really want to « bootstrap » an image ? You don’t need to (just use an official image). 

Try here, either through the launcher or the curl command line:

https://pharo.org/download (Linux for thé launcher or at the end of the page from the command line. 

HTH,

Cedrick

Envoyé de mon iPhone

Le 28 nov. 2018 à 11:23, Garreau, Alexandre <[hidden email]> a écrit :

Le 28/11/2018 à 11h17, Garreau, Alexandre a écrit :
This VM uses a separate heartbeat thread to update its internal clock
and handle events.  For best operation, this thread should run at a
higher priority, however the VM was unable to change the priority.  The
effect is that heavily loaded systems may experience some latency
issues.  If this occurs, please create the appropriate configuration
file in /etc/security/limits.d/ as shown below:

cat <<END | sudo tee /etc/security/limits.d/pharo.conf
*      hard    rtprio  2
*      soft    rtprio  2
END

and report to the pharo mailing list whether this improves behaviour.

Btw changing this didn’t improve anything until then, since build still
fails (but the error disappeared).

Sorry to clutter with a second mail.



--
Pablo Tesone.
[hidden email]
Reply | Threaded
Open this post in threaded view
|

Re: Unable to compile myself Pharo

Garreau, Alexandre
Hi,

I tried to compile itself because I’m usually incomfortable with using
binaries downloaded from the internet whose sources couldn’t be checked
afterwards.  I don’t know the status of Pharo regarding Deterministic
Builds, but I have come anyway to become more comfortable in trusting
what comes from the distro I use and only that…

But I saw the bootstrap process involve redownloading a binary image
anyway… I’d have just prefered to recompile it to be sure, as I’m
usually more comfortable with this idea.  Normally compiling a new
language is —though long— not that difficult.

So maybe that could help debugging stuff that might be improved?  I
guess that error is not supposed to happen right?

PS: sorry for the late answer, I didn’t see answers at first, mails were
only sent to the list and I’m often more used to have answers to me be
cc to myself.  I guess the usage is different here.

Reply | Threaded
Open this post in threaded view
|

Re: Unable to compile myself Pharo

Pierce Ng-3
On Fri, Nov 30, 2018 at 07:15:22PM +0100, Alexandre Garreau wrote:
> But I saw the bootstrap process involve redownloading a binary image
> anyway… I’d have just prefered to recompile it to be sure, as I’m
> usually more comfortable with this idea.  Normally compiling a new
> language is —though long— not that difficult.

For Pharo (and relatives like Squeak and Cuis) there are two parts: VM
and image. To build your own VM, follow the README's instructions for
the OpenSmalltalk VM:

  https://github.com/OpenSmalltalk/opensmalltalk-vm

As for building your own images, for now, I suggest to use the standard
downloadable images.

Pierce

Reply | Threaded
Open this post in threaded view
|

Re: Unable to compile myself Pharo

Garreau, Alexandre
Le 01/12/2018 à 09h34, Pierce Ng a écrit :

> On Fri, Nov 30, 2018 at 07:15:22PM +0100, Alexandre Garreau wrote:
>> But I saw the bootstrap process involve redownloading a binary image
>> anyway… I’d have just prefered to recompile it to be sure, as I’m
>> usually more comfortable with this idea.  Normally compiling a new
>> language is —though long— not that difficult.
>
> For Pharo (and relatives like Squeak and Cuis) there are two parts: VM
> and image. To build your own VM, follow the README's instructions for
> the OpenSmalltalk VM:
>
>   https://github.com/OpenSmalltalk/opensmalltalk-vm

Wait if it’s the same than for squeak… knowing there’s a “squeak-vm”
package in debian that claim to be able to run several images… could it
be that it could be used to run pharo?

Reply | Threaded
Open this post in threaded view
|

Re: Unable to compile myself Pharo

Ben Coman
In reply to this post by Garreau, Alexandre


On Sat, 1 Dec 2018 at 02:19, Alexandre Garreau <[hidden email]> wrote:
Hi,

I tried to compile itself because I’m usually uncomfortable with using
binaries downloaded from the internet whose sources couldn’t be checked
afterwards.  I don’t know the status of Pharo regarding Deterministic
Builds, but I have come anyway to become more comfortable in trusting
what comes from the distro I use and only that…

But I saw the bootstrap process involve redownloading a binary image
anyway… I’d have just prefered to recompile it to be sure, as I’m
usually more comfortable with this idea.  Normally compiling a new
language is —though long— not that difficult.

Traditional Smalltalk systems don't do a bootstrap.  
Indeed its conceivable(?) that there exist some objects floating around in Images distributed by vendors today that were created in the 1980s.
In spite of the advantages of the Image concept saving the whole system state, it does impact reproducability, and is one of the common criticisms of Smalltalk.
 
Pharo has put a lot of effort into producing a bootstrap system run by CI every commit,
but there may still be some rough edges when used outside the CI.

You sound like you may have already looked into these, but anyway you may get some hints from...

cheers -ben

Reply | Threaded
Open this post in threaded view
|

Re: Unable to compile myself Pharo

Pierce Ng-3
In reply to this post by Garreau, Alexandre
On Sat, Dec 01, 2018 at 07:37:12PM +0100, Alexandre Garreau wrote:
> >   https://github.com/OpenSmalltalk/opensmalltalk-vm
>
> Wait if it’s the same than for squeak… knowing there’s a “squeak-vm”
> package in debian that claim to be able to run several images… could it
> be that it could be used to run pharo?

Unlikely. OpenSmalltalk VM's single source code base is used to build
VMs for several different Smalltalk-like languages.

Pierce

Reply | Threaded
Open this post in threaded view
|

Re: Unable to compile myself Pharo

Garreau, Alexandre
In reply to this post by Pierce Ng-3
I didn’t find on the README enough informations (about which dir to use
and what to do once inside), but found some on a random blog on the web
[0], and now built it but it seems it only installed executable binary
stuff under the name of “squeak”, is this normal?  are you sure it’s not
related to the “squeak-vm” debian package?

[0] https://pharoweekly.wordpress.com/2017/02/23/building-pharo-vm-as-simple-as/

Reply | Threaded
Open this post in threaded view
|

Re: Unable to compile myself Pharo

Garreau, Alexandre
In reply to this post by Pierce Ng-3
I built the VM and when running the Pharo.image file got with curl by
the site, it runs but warns the VM is too old for this image (strangely,
since I built the git version), and when trying to run the one sitting
in the pharo-launcher archive (PharoLauncher.image), it segfaults (is
this normal? can that be easily fixed, or…?):


Segmentation fault Thu Dec  6 18:41:41 2018


/usr/local/lib/squeak/5.0-/squeak
Pharo VM version: 5.0-  Thu Dec  6 17:09:52 CET 2018 gcc 6.3.0 [Production Spur VM]
Built from: CoInterpreter VMMaker.oscog-eem.2488 uuid: 3d088675-fa5c-452e-8063-001ff1d4ab81 Dec  6 2018
With: StackToRegisterMappingCogit VMMaker.oscog-eem.2482 uuid: 7df020b4-6565-4768-9e4a-75bc5464ed95 Dec  6 2018
Revision: VM:   Date:  CommitHash:  Plugins:  
Build host: Linux portable.galex-713.eu 4.9.0-8-686-pae #1 SMP Debian 4.9.130-2 (2018-10-27) i686 GNU/Linux
plugin path: /usr/local/bin/../lib/squeak/5.0- [default: /usr/local/lib/squeak/5.0-/]


C stack backtrace & registers:
        eax 0xbf7c9964 ebx 0xbf7c9880 ecx 0xbf7c9918 edx 0xbf7c98cc
        edi 0xbf7c9750 esi 0xbf7c9750 ebp 0xbf7c97e8 esp 0xbf7c9834
        eip 0xbf7c9a48
*[0xbf7c9a48]
/usr/local/bin/../lib/squeak/5.0-/squeak(+0x1df61)[0x4c5f61]
/usr/local/bin/../lib/squeak/5.0-/squeak(+0x1fdee)[0x4c7dee]
linux-gate.so.1(__kernel_rt_sigreturn+0x0)[0xb77b8d10]
/lib/i386-linux-gnu/libc.so.6(+0x75d91)[0xb74d2d91]
/lib/i386-linux-gnu/libc.so.6(getenv+0x1c)[0xb748af5c]
/usr/local/bin/../lib/squeak/5.0-/squeak(+0xca507)[0x572507]
/usr/local/bin/../lib/squeak/5.0-/squeak(+0x5b36a)[0x50336a]
/usr/local/bin/../lib/squeak/5.0-/squeak(+0x5ca5c)[0x504a5c]
/usr/local/bin/../lib/squeak/5.0-/squeak(ceSendsupertonumArgs+0x2a4)[0x507004]
[0x140008d]
[0x1401128]
[0x263a2f3]
[0x4431f0b]
[0x442938e]
[0x4429344]
[0x44293c8]
[0x14f1ae5]
[0x140888c]
[0x1401128]
[0x14f1896]
[0x14b72a1]
[0x1401128]
[0x14b72b4]
[0x14b715e]
[0x14b5403]
[0x14059c5]
[0x14b53b3]
[0x14010f8]
/usr/local/bin/../lib/squeak/5.0-/squeak(+0x10f1a8)[0x5b71a8]


Smalltalk stack dump:
0xbf7d4880 M UnixEnvironment>getRawEnvironmentVariableViaFFI: 0x171d248: a(n) UnixEnvironment
0xbf7d48b0 I FFICalloutAPI>function:module: 0x171f228: a(n) FFICalloutAPI
0xbf7d48d8 I UnixEnvironment(Object)>ffiCall:module: 0x171d248: a(n) UnixEnvironment
0xbf7d4900 I UnixEnvironment>getRawEnvironmentVariableViaFFI: 0x171d248: a(n) UnixEnvironment
0xbf7d4928 I UnixEnvironment>getRawEnvironmentVariable: 0x171d248: a(n) UnixEnvironment
0xbf7d494c I UnixEnvironment>getEnvironmentVariable:withEncoding: 0x171d248: a(n) UnixEnvironment
0xbf7d4974 I UnixEnvironment>getEnvironmentVariable: 0x171d248: a(n) UnixEnvironment
0xbf7d4994 M [] in UnixResolver(PlatformResolver)>directoryFromEnvVariableNamed:or: 0x15054b8: a(n) UnixResolver
0xbf7d49ac M BlockClosure>on:do: 0x171cd90: a(n) BlockClosure
0xbf7d49d8 I UnixResolver(PlatformResolver)>directoryFromEnvVariableNamed:or: 0x15054b8: a(n) UnixResolver
0xbf7d49f8 M UnixResolver>preferences 0x15054b8: a(n) UnixResolver
0xbf7d4a10 M UnixResolver(FileSystemResolver)>resolve: 0x15054b8: a(n) UnixResolver
0xbf7d4a34 I SystemResolver(FileSystemResolver)>unknownOrigin: 0x1503078: a(n) SystemResolver
0xbf7d4a50 M SystemResolver(FileSystemResolver)>resolve: 0x1503078: a(n) SystemResolver
0xbf7d4a70 M InteractiveResolver>unknownOrigin: 0x1500168: a(n) InteractiveResolver
0xbf7d4a90 M [] in InteractiveResolver>resolve: 0x1500168: a(n) InteractiveResolver
0xbf7d4aac M IdentityDictionary(Dictionary)>at:ifAbsent: 0x1503088: a(n) IdentityDictionary
0xbf7d4acc M InteractiveResolver>resolve: 0x1500168: a(n) InteractiveResolver
0xbf7cf894 M FileLocator>resolve 0x171cc08: a(n) FileLocator
0xbf7cf8b4 I FileLocator>asFileReference 0x171cc08: a(n) FileLocator
0xbf7cf8d4 I PhLSettingBrowser class>preferencesFile 0x43dd830: a(n) PhLSettingBrowser class
0xbf7cf8f4 I PhLSettingBrowser class>launcherStartUp 0x43dd830: a(n) PhLSettingBrowser class
0xbf7cf90c M [] in PhLStartupManager class>startUp 0x43e80c8: a(n) PhLStartupManager class
0xbf7cf930 M SortedCollection(OrderedCollection)>do: 0x4405a68: a(n) SortedCollection
0xbf7cf954 I PhLStartupManager class>startUp 0x43e80c8: a(n) PhLStartupManager class
0xbf7cf96c M PhLStartupManager class(Behavior)>startUp: 0x43e80c8: a(n) PhLStartupManager class
0xbf7cf988 M ClassSessionHandler>startup: 0x4405a48: a(n) ClassSessionHandler
0xbf7cf9a8 M [] in WorkingSession>runStartup: 0x1500000: a(n) WorkingSession
0xbf7cf9cc M [] in WorkingSession>runList:do: 0x1500000: a(n) WorkingSession
0xbf7cf9e4 M BlockClosure>on:do: 0x17179c0: a(n) BlockClosure
0xbf7cfa08 M [] in WorkingSession>runList:do: 0x1500000: a(n) WorkingSession
0xbf7cfa2c M Array(SequenceableCollection)>do: 0x15013c0: a(n) Array
0xbf7cfa50 I WorkingSession>runList:do: 0x1500000: a(n) WorkingSession
0xbf7cfa78 I WorkingSession>runStartup: 0x1500000: a(n) WorkingSession
0xbf7cfa9c I WorkingSession>start: 0x1500000: a(n) WorkingSession
0xbf7cfac8 I SessionManager>snapshot:andQuit: 0x3508d80: a(n) SessionManager
 0x451b818 s [] in SmalltalkImage>snapshot:andQuit:
 0x451e848 s CurrentExecutionEnvironment class>activate:for:
 0x451f248 s DefaultExecutionEnvironment(ExecutionEnvironment)>beActiveDuring:
 0x451ff80 s DefaultExecutionEnvironment class>beActiveDuring:
 0x451f2a8 s SmalltalkImage>snapshot:andQuit:
 0x451ffe0 s EvaluateCommandLineHandler>activate
 0x4521228 s EvaluateCommandLineHandler class(CommandLineHandler class)>activateWith:
 0x4522038 s [] in PharoCommandLineHandler(BasicCommandLineHandler)>activateSubCommand:
 0x4523290 s BlockClosure>on:do:
 0x4523e78 s PharoCommandLineHandler(BasicCommandLineHandler)>activateSubCommand:
 0x4525220 s PharoCommandLineHandler(BasicCommandLineHandler)>handleSubcommand
 0x45254c0 s PharoCommandLineHandler(BasicCommandLineHandler)>handleArgument:
 0x45257a8 s [] in PharoCommandLineHandler(BasicCommandLineHandler)>activate
 0x4525ad8 s BlockClosure>on:do:
 0x4525e18 s PharoCommandLineHandler(BasicCommandLineHandler)>activate
 0x4526200 s PharoCommandLineHandler>activate
 0x45265b8 s PharoCommandLineHandler class(CommandLineHandler class)>activateWith:
 0x4526b90 s [] in PharoCommandLineHandler class>activateWith:
 0x4526e00 s NonInteractiveUIManager(UIManager)>defer:
 0x4527160 s PharoCommandLineHandler class>activateWith:
 0x45274a0 s [] in BasicCommandLineHandler>activateSubCommand:
 0x4527710 s BlockClosure>on:do:
 0x4527968 s BasicCommandLineHandler>activateSubCommand:
 0x4527d60 s BasicCommandLineHandler>handleSubcommand
 0x4528060 s BasicCommandLineHandler>handleArgument:
 0x4528200 s [] in BasicCommandLineHandler>activate
 0x4528468 s BlockClosure>on:do:
 0x4528b68 s BasicCommandLineHandler>activate
 0x4528dc0 s [] in BasicCommandLineHandler class>startUp:
 0x4528e20 s BlockClosure>cull:
 0x4528e80 s WorkingSession>executeDeferredStartupActions:
 0x4461f60 s WorkingSession>runStartup:
 0x4514430 s WorkingSession>start:
 0x4450f28 s SessionManager>snapshot:andQuit:
 0x4453318 s [] in SmalltalkImage>snapshot:andQuit:
 0x4457f68 s CurrentExecutionEnvironment class>activate:for:
 0x4459de8 s DefaultExecutionEnvironment(ExecutionEnvironment)>beActiveDuring:
 0x445b3a0 s DefaultExecutionEnvironment class>beActiveDuring:
 0x4459e48 s SmalltalkImage>snapshot:andQuit:
 0x445b400 s EvaluateCommandLineHandler>activate
 0x445c008 s EvaluateCommandLineHandler class(CommandLineHandler class)>activateWith:
 0x445c378 s [] in PharoCommandLineHandler(BasicCommandLineHandler)>activateSubCommand:
 0x445c818 s BlockClosure>on:do:
 0x445ccd8 s PharoCommandLineHandler(BasicCommandLineHandler)>activateSubCommand:
 0x445df88 s PharoCommandLineHandler(BasicCommandLineHandler)>handleSubcommand
 0x445e260 s PharoCommandLineHandler(BasicCommandLineHandler)>handleArgument:
 0x445e6d8 s [] in PharoCommandLineHandler(BasicCommandLineHandler)>activate
 0x445eb18 s BlockClosure>on:do:
 0x445eff0 s PharoCommandLineHandler(BasicCommandLineHandler)>activate
 0x445f608 s PharoCommandLineHandler>activate
 0x445f968 s PharoCommandLineHandler class(CommandLineHandler class)>activateWith:
 0x445f9c8 s [] in PharoCommandLineHandler class>activateWith:
 0x445fa28 s NonInteractiveUIManager(UIManager)>defer:
 0x445faa0 s PharoCommandLineHandler class>activateWith:
 0x445fb00 s [] in BasicCommandLineHandler>activateSubCommand:
 0x445fb60 s BlockClosure>on:do:
 0x445fbf0 s BasicCommandLineHandler>activateSubCommand:
 0x445fca8 s BasicCommandLineHandler>handleSubcommand
 0x445fd28 s BasicCommandLineHandler>handleArgument:
 0x445fdc0 s [] in BasicCommandLineHandler>activate
 0x445ff20 s BlockClosure>on:do:
 0x44600f8 s BasicCommandLineHandler>activate
 0x4460290 s [] in BasicCommandLineHandler class>startUp:
 0x44602f0 s BlockClosure>cull:
 0x4460350 s WorkingSession>executeDeferredStartupActions:
 0x4450108 s WorkingSession>runStartup:
 0x4451b00 s WorkingSession>start:
 0x444cde8 s SessionManager>snapshot:andQuit:
 0x444ced8 s [] in SmalltalkImage>snapshot:andQuit:
 0x444d478 s CurrentExecutionEnvironment class>activate:for:
 0x444d518 s DefaultExecutionEnvironment(ExecutionEnvironment)>beActiveDuring:
 0x444d5d8 s DefaultExecutionEnvironment class>beActiveDuring:
 0x444d578 s SmalltalkImage>snapshot:andQuit:
 0x444d638 s EvaluateCommandLineHandler>activate
 0x444d698 s EvaluateCommandLineHandler class(CommandLineHandler class)>activateWith:
 0x444d718 s [] in PharoCommandLineHandler(BasicCommandLineHandler)>activateSubCommand:
 0x444d7d8 s BlockClosure>on:do:
 0x444d928 s PharoCommandLineHandler(BasicCommandLineHandler)>activateSubCommand:
 0x444ea68 s PharoCommandLineHandler(BasicCommandLineHandler)>handleSubcommand
 0x444ec10 s PharoCommandLineHandler(BasicCommandLineHandler)>handleArgument:
 0x444ee08 s [] in PharoCommandLineHandler(BasicCommandLineHandler)>activate
 0x444f088 s BlockClosure>on:do:
 0x444f260 s PharoCommandLineHandler(BasicCommandLineHandler)>activate
 0x444f3f8 s PharoCommandLineHandler>activate
 0x444f458 s PharoCommandLineHandler class(CommandLineHandler class)>activateWith:
 0x444f4b8 s [] in PharoCommandLineHandler class>activateWith:
 0x444f518 s NonInteractiveUIManager(UIManager)>defer:
 0x444f590 s PharoCommandLineHandler class>activateWith:
 0x444f5f0 s [] in BasicCommandLineHandler>activateSubCommand:
 0x444f650 s BlockClosure>on:do:
 0x444f6e0 s BasicCommandLineHandler>activateSubCommand:
 0x444f798 s BasicCommandLineHandler>handleSubcommand
 0x444f818 s BasicCommandLineHandler>handleArgument:
 0x444f8b0 s [] in BasicCommandLineHandler>activate
 0x444fa10 s BlockClosure>on:do:
 0x444fbe8 s BasicCommandLineHandler>activate
 0x444fd80 s [] in BasicCommandLineHandler class>startUp:
 0x444fde0 s BlockClosure>cull:
 0x444fe40 s WorkingSession>executeDeferredStartupActions:
 0x444cd68 s WorkingSession>runStartup:
 0x444ce68 s WorkingSession>start:
 0x4429710 s SessionManager>snapshot:andQuit:
 0x442dfb0 s [] in SmalltalkImage>snapshot:andQuit:
 0x4432730 s CurrentExecutionEnvironment class>activate:for:
 0x443ebe8 s DefaultExecutionEnvironment(ExecutionEnvironment)>beActiveDuring:
 0x44412b8 s DefaultExecutionEnvironment class>beActiveDuring:
 0x443ec48 s SmalltalkImage>snapshot:andQuit:
 0x3d5dc70 s ConfigurationCommandLineHandler>installVersion:
 0x3d5dd70 s ConfigurationCommandLineHandler>installConfiguration
 0x3d5de48 s ConfigurationCommandLineHandler>activate
 0x3d5df10 s ConfigurationCommandLineHandler class(CommandLineHandler class)>activateWith:
 0x3d5e0e0 s [] in PharoCommandLineHandler(BasicCommandLineHandler)>activateSubCommand:
 0x3d5e2b0 s BlockClosure>on:do:
 0x3d5e478 s PharoCommandLineHandler(BasicCommandLineHandler)>activateSubCommand:
 0x3d5e550 s PharoCommandLineHandler(BasicCommandLineHandler)>handleSubcommand
 0x3d5e5e0 s PharoCommandLineHandler(BasicCommandLineHandler)>handleArgument:
 0x3d5e678 s [] in PharoCommandLineHandler(BasicCommandLineHandler)>activate
 0x3d5e7d8 s BlockClosure>on:do:
 0x3d5e9b0 s PharoCommandLineHandler(BasicCommandLineHandler)>activate
 0x3d5eb48 s PharoCommandLineHandler>activate
 0x3d5eba8 s PharoCommandLineHandler class(CommandLineHandler class)>activateWith:
 0x3d5ec08 s [] in PharoCommandLineHandler class>activateWith:
 0x3d5ec68 s NonInteractiveUIManager(UIManager)>defer:
 0x3d60898 s PharoCommandLineHandler class>activateWith:
 0x3d623b8 s [] in BasicCommandLineHandler>activateSubCommand:
 0x3d66ad0 s BlockClosure>on:do:
 0x3d71d10 s BasicCommandLineHandler>activateSubCommand:
 0x3d74a78 s BasicCommandLineHandler>handleSubcommand
 0x3d75cb8 s BasicCommandLineHandler>handleArgument:
 0x3d75d50 s [] in BasicCommandLineHandler>activate
 0x3d75eb0 s BlockClosure>on:do:
 0x3d76088 s BasicCommandLineHandler>activate
 0x3d76220 s [] in BasicCommandLineHandler class>startUp:
 0x3d76280 s BlockClosure>cull:
 0x3d762f8 s WorkingSession>executeDeferredStartupActions:
 0x3d763b8 s WorkingSession>runStartup:
 0x3d76418 s WorkingSession>start:
 0x3d11bc8 s SessionManager>snapshot:andQuit:
 0x3d13f98 s [] in SmalltalkImage>snapshot:andQuit:
 0x3d141e0 s CurrentExecutionEnvironment class>activate:for:
 0x3d142f8 s DefaultExecutionEnvironment(ExecutionEnvironment)>beActiveDuring:
 0x3d14438 s DefaultExecutionEnvironment class>beActiveDuring:
 0x3d14358 s SmalltalkImage>snapshot:andQuit:
 0x3d14498 s SmalltalkImage>saveImageInFileNamed:
 0x3d14520 s SmalltalkImage>saveAs:
 0x3d145d0 s SaveCommandLineHandler>saveImage
 0x3d14668 s SaveCommandLineHandler>activate
 0x3d14770 s SaveCommandLineHandler class(CommandLineHandler class)>activateWith:
 0x3d14860 s [] in PharoCommandLineHandler(BasicCommandLineHandler)>activateSubCommand:
 0x3d149d8 s BlockClosure>on:do:
 0x3d14ab0 s PharoCommandLineHandler(BasicCommandLineHandler)>activateSubCommand:
 0x3d14c68 s PharoCommandLineHandler(BasicCommandLineHandler)>handleSubcommand
 0x3d14e58 s PharoCommandLineHandler(BasicCommandLineHandler)>handleArgument:
 0x3d15010 s [] in PharoCommandLineHandler(BasicCommandLineHandler)>activate
 0x3d15170 s BlockClosure>on:do:
 0x3d151e8 s PharoCommandLineHandler(BasicCommandLineHandler)>activate
 0x3d15260 s PharoCommandLineHandler>activate
 0x3d152c0 s PharoCommandLineHandler class(CommandLineHandler class)>activateWith:
 0x3d15320 s [] in PharoCommandLineHandler class>activateWith:
 0x3d15380 s NonInteractiveUIManager(UIManager)>defer:
 0x3d153f8 s PharoCommandLineHandler class>activateWith:
 0x3d15468 s [] in BasicCommandLineHandler>activateSubCommand:
 0x3d154c8 s BlockClosure>on:do:
 0x3d15558 s BasicCommandLineHandler>activateSubCommand:
 0x3d15610 s BasicCommandLineHandler>handleSubcommand
 0x3d15690 s BasicCommandLineHandler>handleArgument:
 0x3d15728 s [] in BasicCommandLineHandler>activate
 0x3d15888 s BlockClosure>on:do:
 0x3d15900 s BasicCommandLineHandler>activate
 0x3d15978 s [] in BasicCommandLineHandler class>startUp:
 0x3d159d8 s BlockClosure>cull:
 0x3d15a50 s WorkingSession>executeDeferredStartupActions:
 0x3d15b10 s WorkingSession>runStartup:
 0x3d15b70 s WorkingSession>start:
 0x3c33370 s SessionManager>snapshot:andQuit:
 0x3c33ec0 s [] in SmalltalkImage>snapshot:andQuit:
 0x3c343c8 s CurrentExecutionEnvironment class>activate:for:
 0x3c34788 s DefaultExecutionEnvironment(ExecutionEnvironment)>beActiveDuring:
 0x3c34aa0 s DefaultExecutionEnvironment class>beActiveDuring:
 0x3c347e8 s SmalltalkImage>snapshot:andQuit:
 0x3c34b00 s ImageCleanerCommandLineHandler>activate
 0x3c34e38 s ImageCleanerCommandLineHandler class(CommandLineHandler class)>activateWith:
 0x3c35018 s [] in PharoCommandLineHandler(BasicCommandLineHandler)>activateSubCommand:
 0x379d158 s BlockClosure>on:do:
 0x379d1d0 s PharoCommandLineHandler(BasicCommandLineHandler)>activateSubCommand:
 0x379ceb8 s PharoCommandLineHandler(BasicCommandLineHandler)>handleSubcommand
 0x3c33410 s PharoCommandLineHandler(BasicCommandLineHandler)>handleArgument:
 0x379cf18 s [] in PharoCommandLineHandler(BasicCommandLineHandler)>activate
 0x379cf90 s BlockClosure>on:do:
 0x379d008 s PharoCommandLineHandler(BasicCommandLineHandler)>activate
 0x3c33470 s PharoCommandLineHandler>activate
 0x3c33f30 s PharoCommandLineHandler class(CommandLineHandler class)>activateWith:
 0x3c34448 s [] in PharoCommandLineHandler class>activateWith:
 0x3c34848 s NonInteractiveUIManager(UIManager)>defer:
 0x376cbb8 s PharoCommandLineHandler class>activateWith:
 0x3c334d0 s [] in BasicCommandLineHandler>activateSubCommand:
 0x379d068 s BlockClosure>on:do:
 0x376cc60 s BasicCommandLineHandler>activateSubCommand:
 0x376ccd8 s BasicCommandLineHandler>handleSubcommand
 0x3c33530 s BasicCommandLineHandler>handleArgument:
 0x376cd48 s [] in BasicCommandLineHandler>activate
 0x379d0c8 s BlockClosure>on:do:
 0x376cdd8 s BasicCommandLineHandler>activate
 0x3c33590 s [] in BasicCommandLineHandler class>startUp:
 0x3c33f90 s BlockClosure>cull:
 0x3c344a8 s WorkingSession>executeDeferredStartupActions:
 0x376ce50 s WorkingSession>runStartup:
 0x3c335f0 s WorkingSession>start:
 0x37630c8 s SessionManager>snapshot:andQuit:
 0x3765fa8 s [] in SmalltalkImage>snapshot:andQuit:
 0x376bc90 s CurrentExecutionEnvironment class>activate:for:
 0x376c118 s DefaultExecutionEnvironment(ExecutionEnvironment)>beActiveDuring:
 0x376c500 s DefaultExecutionEnvironment class>beActiveDuring:
 0x376c178 s SmalltalkImage>snapshot:andQuit:
 0x3759e70 s LoadUpdatesCommandLineHandler>activate
 0x3759ed0 s LoadUpdatesCommandLineHandler class(CommandLineHandler class)>activateWith:
 0x375a090 s [] in PharoCommandLineHandler(BasicCommandLineHandler)>activateSubCommand:
 0x375a210 s BlockClosure>on:do:
 0x375a288 s PharoCommandLineHandler(BasicCommandLineHandler)>activateSubCommand:
 0x375a300 s PharoCommandLineHandler(BasicCommandLineHandler)>handleSubcommand
 0x375a360 s PharoCommandLineHandler(BasicCommandLineHandler)>handleArgument:
 0x375a3d8 s [] in PharoCommandLineHandler(BasicCommandLineHandler)>activate
 0x375a468 s BlockClosure>on:do:
 0x375a4e0 s PharoCommandLineHandler(BasicCommandLineHandler)>activate
 0x375a558 s PharoCommandLineHandler>activate
 0x3759968 s PharoCommandLineHandler class(CommandLineHandler class)>activateWith:
 0x37599c8 s [] in PharoCommandLineHandler class>activateWith:
 0x3759a28 s NonInteractiveUIManager(UIManager)>defer:
 0x37594a0 s PharoCommandLineHandler class>activateWith:
 0x3759a88 s [] in BasicCommandLineHandler>activateSubCommand:
 0x3759c68 s BlockClosure>on:do:
 0x3759548 s BasicCommandLineHandler>activateSubCommand:
 0x37595c0 s BasicCommandLineHandler>handleSubcommand
 0x3759ae8 s BasicCommandLineHandler>handleArgument:
 0x3759620 s [] in BasicCommandLineHandler>activate
 0x3759b48 s BlockClosure>on:do:
 0x37596b0 s BasicCommandLineHandler>activate
 0x3759ba8 s [] in BasicCommandLineHandler class>startUp:
 0x3759cc8 s BlockClosure>cull:
 0x3759d28 s WorkingSession>executeDeferredStartupActions:
 0x3759728 s WorkingSession>runStartup:
 0x3759c08 s WorkingSession>start:
 0x3756f68 s SessionManager>snapshot:andQuit:
 0x3757208 s [] in SmalltalkImage>snapshot:andQuit:
 0x3757328 s CurrentExecutionEnvironment class>activate:for:
 0x3757468 s DefaultExecutionEnvironment(ExecutionEnvironment)>beActiveDuring:
 0x3757588 s DefaultExecutionEnvironment class>beActiveDuring:
 0x37574c8 s SmalltalkImage>snapshot:andQuit:
 0x37575e8 s ImageCleanerCommandLineHandler>activate
 0x3757648 s ImageCleanerCommandLineHandler class(CommandLineHandler class)>activateWith:
 0x37576a8 s [] in PharoCommandLineHandler(BasicCommandLineHandler)>activateSubCommand:
 0x3756af8 s BlockClosure>on:do:
 0x3756b70 s PharoCommandLineHandler(BasicCommandLineHandler)>activateSubCommand:
 0x3756858 s PharoCommandLineHandler(BasicCommandLineHandler)>handleSubcommand
 0x3756fc8 s PharoCommandLineHandler(BasicCommandLineHandler)>handleArgument:
 0x37568b8 s [] in PharoCommandLineHandler(BasicCommandLineHandler)>activate
 0x3756930 s BlockClosure>on:do:
 0x37569a8 s PharoCommandLineHandler(BasicCommandLineHandler)>activate
 0x3757028 s PharoCommandLineHandler>activate
 0x3757268 s PharoCommandLineHandler class(CommandLineHandler class)>activateWith:
 0x37573a8 s [] in PharoCommandLineHandler class>activateWith:
 0x3757528 s NonInteractiveUIManager(UIManager)>defer:
 0x3754c98 s PharoCommandLineHandler class>activateWith:
 0x3757088 s [] in BasicCommandLineHandler>activateSubCommand:
 0x3756a08 s BlockClosure>on:do:
 0x3754d40 s BasicCommandLineHandler>activateSubCommand:
 0x3754db8 s BasicCommandLineHandler>handleSubcommand
 0x37570e8 s BasicCommandLineHandler>handleArgument:
 0x3754e28 s [] in BasicCommandLineHandler>activate
 0x3756a68 s BlockClosure>on:do:
 0x3754eb8 s BasicCommandLineHandler>activate
 0x3757148 s [] in BasicCommandLineHandler class>startUp:
 0x37572c8 s BlockClosure>cull:
 0x3757408 s WorkingSession>executeDeferredStartupActions:
 0x3754f30 s WorkingSession>runStartup:
 0x37571a8 s WorkingSession>start:
 0x37543e0 s SessionManager>snapshot:andQuit:
 0x3754440 s [] in SmalltalkImage>snapshot:andQuit:
 0x37544a0 s CurrentExecutionEnvironment class>activate:for:
 0x3754520 s DefaultExecutionEnvironment(ExecutionEnvironment)>beActiveDuring:
 0x37545e0 s DefaultExecutionEnvironment class>beActiveDuring:
 0x3754580 s SmalltalkImage>snapshot:andQuit:
 0x3750bd8 s LoadUpdatesCommandLineHandler>activate
 0x3750c38 s LoadUpdatesCommandLineHandler class(CommandLineHandler class)>activateWith:
 0x3750df8 s [] in PharoCommandLineHandler(BasicCommandLineHandler)>activateSubCommand:
 0x3750f78 s BlockClosure>on:do:
 0x3750ff0 s PharoCommandLineHandler(BasicCommandLineHandler)>activateSubCommand:
 0x3751068 s PharoCommandLineHandler(BasicCommandLineHandler)>handleSubcommand
 0x37510c8 s PharoCommandLineHandler(BasicCommandLineHandler)>handleArgument:
 0x3751140 s [] in PharoCommandLineHandler(BasicCommandLineHandler)>activate
 0x37511d0 s BlockClosure>on:do:
 0x3751248 s PharoCommandLineHandler(BasicCommandLineHandler)>activate
 0x37512c0 s PharoCommandLineHandler>activate
 0x3751320 s PharoCommandLineHandler class(CommandLineHandler class)>activateWith:
 0x3751380 s [] in PharoCommandLineHandler class>activateWith:
 0x37513e0 s NonInteractiveUIManager(UIManager)>defer:
 0x3750640 s PharoCommandLineHandler class>activateWith:
 0x3751440 s [] in BasicCommandLineHandler>activateSubCommand:
 0x3751620 s BlockClosure>on:do:
 0x37506e8 s BasicCommandLineHandler>activateSubCommand:
 0x3750760 s BasicCommandLineHandler>handleSubcommand
 0x37514a0 s BasicCommandLineHandler>handleArgument:
 0x37507c0 s [] in BasicCommandLineHandler>activate
 0x3751500 s BlockClosure>on:do:
 0x3750850 s BasicCommandLineHandler>activate
 0x3751560 s [] in BasicCommandLineHandler class>startUp:
 0x3751680 s BlockClosure>cull:
 0x37516e0 s WorkingSession>executeDeferredStartupActions:
 0x37508c8 s WorkingSession>runStartup:
 0x37515c0 s WorkingSession>start:
 0x374e128 s SessionManager>snapshot:andQuit:
 0x374e3c8 s [] in SmalltalkImage>snapshot:andQuit:
 0x374e4e8 s CurrentExecutionEnvironment class>activate:for:
 0x374e628 s DefaultExecutionEnvironment(ExecutionEnvironment)>beActiveDuring:
 0x374e748 s DefaultExecutionEnvironment class>beActiveDuring:
 0x374e688 s SmalltalkImage>snapshot:andQuit:
 0x374e7a8 s ImageCleanerCommandLineHandler>activate
 0x374e808 s ImageCleanerCommandLineHandler class(CommandLineHandler class)>activateWith:
 0x374e868 s [] in PharoCommandLineHandler(BasicCommandLineHandler)>activateSubCommand:
 0x374dc20 s BlockClosure>on:do:
 0x374dc98 s PharoCommandLineHandler(BasicCommandLineHandler)>activateSubCommand:
 0x374d980 s PharoCommandLineHandler(BasicCommandLineHandler)>handleSubcommand
 0x374e188 s PharoCommandLineHandler(BasicCommandLineHandler)>handleArgument:
 0x374d9e0 s [] in PharoCommandLineHandler(BasicCommandLineHandler)>activate
 0x374da58 s BlockClosure>on:do:
 0x374dad0 s PharoCommandLineHandler(BasicCommandLineHandler)>activate
 0x374e1e8 s PharoCommandLineHandler>activate
 0x374e428 s PharoCommandLineHandler class(CommandLineHandler class)>activateWith:
 0x374e568 s [] in PharoCommandLineHandler class>activateWith:
 0x374e6e8 s NonInteractiveUIManager(UIManager)>defer:
 0x374bda8 s PharoCommandLineHandler class>activateWith:
 0x374e248 s [] in BasicCommandLineHandler>activateSubCommand:
 0x374db30 s BlockClosure>on:do:
 0x374be50 s BasicCommandLineHandler>activateSubCommand:
 0x374bec8 s BasicCommandLineHandler>handleSubcommand
 0x374e2a8 s BasicCommandLineHandler>handleArgument:
 0x374bf38 s [] in BasicCommandLineHandler>activate
 0x374db90 s BlockClosure>on:do:
 0x374bfc8 s BasicCommandLineHandler>activate
 0x374e308 s [] in BasicCommandLineHandler class>startUp:
 0x374e488 s BlockClosure>cull:
 0x374e5c8 s WorkingSession>executeDeferredStartupActions:
 0x374c040 s WorkingSession>runStartup:
 0x374e368 s WorkingSession>start:
 0x374b4f0 s SessionManager>snapshot:andQuit:
 0x374b550 s [] in SmalltalkImage>snapshot:andQuit:
 0x374b5b0 s CurrentExecutionEnvironment class>activate:for:
 0x374b630 s DefaultExecutionEnvironment(ExecutionEnvironment)>beActiveDuring:
 0x374b6f0 s DefaultExecutionEnvironment class>beActiveDuring:
 0x374b690 s SmalltalkImage>snapshot:andQuit:
 0x3748ad0 s LoadUpdatesCommandLineHandler>activate
 0x3748b30 s LoadUpdatesCommandLineHandler class(CommandLineHandler class)>activateWith:
 0x3748cf0 s [] in PharoCommandLineHandler(BasicCommandLineHandler)>activateSubCommand:
 0x3748e70 s BlockClosure>on:do:
 0x3748ee8 s PharoCommandLineHandler(BasicCommandLineHandler)>activateSubCommand:
 0x3748f60 s PharoCommandLineHandler(BasicCommandLineHandler)>handleSubcommand
 0x3748fc0 s PharoCommandLineHandler(BasicCommandLineHandler)>handleArgument:
 0x3749038 s [] in PharoCommandLineHandler(BasicCommandLineHandler)>activate
 0x37490c8 s BlockClosure>on:do:
 0x3749140 s PharoCommandLineHandler(BasicCommandLineHandler)>activate
 0x37491b8 s PharoCommandLineHandler>activate
 0x3749218 s PharoCommandLineHandler class(CommandLineHandler class)>activateWith:
 0x3749278 s [] in PharoCommandLineHandler class>activateWith:
 0x37492d8 s NonInteractiveUIManager(UIManager)>defer:
 0x3748538 s PharoCommandLineHandler class>activateWith:
 0x3749338 s [] in BasicCommandLineHandler>activateSubCommand:
 0x3749518 s BlockClosure>on:do:
 0x37485e0 s BasicCommandLineHandler>activateSubCommand:
 0x3748658 s BasicCommandLineHandler>handleSubcommand
 0x3749398 s BasicCommandLineHandler>handleArgument:
 0x37486b8 s [] in BasicCommandLineHandler>activate
 0x37493f8 s BlockClosure>on:do:
 0x3748748 s BasicCommandLineHandler>activate
 0x3749458 s [] in BasicCommandLineHandler class>startUp:
 0x3749578 s BlockClosure>cull:
 0x37495d8 s WorkingSession>executeDeferredStartupActions:
 0x37487c0 s WorkingSession>runStartup:
 0x37494b8 s WorkingSession>start:
 0x3746020 s SessionManager>snapshot:andQuit:
 0x37462c0 s [] in SmalltalkImage>snapshot:andQuit:
 0x37463e0 s CurrentExecutionEnvironment class>activate:for:
 0x3746520 s DefaultExecutionEnvironment(ExecutionEnvironment)>beActiveDuring:
 0x3746640 s DefaultExecutionEnvironment class>beActiveDuring:
 0x3746580 s SmalltalkImage>snapshot:andQuit:
 0x37466a0 s ImageCleanerCommandLineHandler>activate
 0x3746700 s ImageCleanerCommandLineHandler class(CommandLineHandler class)>activateWith:
 0x3746760 s [] in PharoCommandLineHandler(BasicCommandLineHandler)>activateSubCommand:
 0x3745bc8 s BlockClosure>on:do:
 0x3745c40 s PharoCommandLineHandler(BasicCommandLineHandler)>activateSubCommand:
 0x3745928 s PharoCommandLineHandler(BasicCommandLineHandler)>handleSubcommand
 0x3746080 s PharoCommandLineHandler(BasicCommandLineHandler)>handleArgument:
 0x3745988 s [] in PharoCommandLineHandler(BasicCommandLineHandler)>activate
 0x3745a00 s BlockClosure>on:do:
 0x3745a78 s PharoCommandLineHandler(BasicCommandLineHandler)>activate
 0x37460e0 s PharoCommandLineHandler>activate
 0x3746320 s PharoCommandLineHandler class(CommandLineHandler class)>activateWith:
 0x3746460 s [] in PharoCommandLineHandler class>activateWith:
 0x37465e0 s NonInteractiveUIManager(UIManager)>defer:
 0x3743d50 s PharoCommandLineHandler class>activateWith:
 0x3746140 s [] in BasicCommandLineHandler>activateSubCommand:
 0x3745ad8 s BlockClosure>on:do:
 0x3743df8 s BasicCommandLineHandler>activateSubCommand:
 0x3743e70 s BasicCommandLineHandler>handleSubcommand
 0x37461a0 s BasicCommandLineHandler>handleArgument:
 0x3743ee0 s [] in BasicCommandLineHandler>activate
 0x3745b38 s BlockClosure>on:do:
 0x3743f70 s BasicCommandLineHandler>activate
 0x3746200 s [] in BasicCommandLineHandler class>startUp:
 0x3746380 s BlockClosure>cull:
 0x37464c0 s WorkingSession>executeDeferredStartupActions:
 0x3743fe8 s WorkingSession>runStartup:
 0x3746260 s WorkingSession>start:
 0x3743498 s SessionManager>snapshot:andQuit:
 0x37434f8 s [] in SmalltalkImage>snapshot:andQuit:
 0x3743558 s CurrentExecutionEnvironment class>activate:for:
 0x37435d8 s DefaultExecutionEnvironment(ExecutionEnvironment)>beActiveDuring:
 0x3743698 s DefaultExecutionEnvironment class>beActiveDuring:
 0x3743638 s SmalltalkImage>snapshot:andQuit:
 0x3742570 s LoadUpdatesCommandLineHandler>activate
 0x37425d0 s LoadUpdatesCommandLineHandler class(CommandLineHandler class)>activateWith:
 0x3742790 s [] in PharoCommandLineHandler(BasicCommandLineHandler)>activateSubCommand:
 0x3742910 s BlockClosure>on:do:
 0x3742988 s PharoCommandLineHandler(BasicCommandLineHandler)>activateSubCommand:
 0x3742a00 s PharoCommandLineHandler(BasicCommandLineHandler)>handleSubcommand
 0x3742a60 s PharoCommandLineHandler(BasicCommandLineHandler)>handleArgument:
 0x3742ad8 s [] in PharoCommandLineHandler(BasicCommandLineHandler)>activate
 0x3742b68 s BlockClosure>on:do:
 0x3742be0 s PharoCommandLineHandler(BasicCommandLineHandler)>activate
 0x3742c58 s PharoCommandLineHandler>activate
 0x3742cb8 s PharoCommandLineHandler class(CommandLineHandler class)>activateWith:
 0x3742d18 s [] in PharoCommandLineHandler class>activateWith:
 0x3742d78 s NonInteractiveUIManager(UIManager)>defer:
 0x3741fd8 s PharoCommandLineHandler class>activateWith:
 0x3742dd8 s [] in BasicCommandLineHandler>activateSubCommand:
 0x3742fb8 s BlockClosure>on:do:
 0x3742080 s BasicCommandLineHandler>activateSubCommand:
 0x37420f8 s BasicCommandLineHandler>handleSubcommand
 0x3742e38 s BasicCommandLineHandler>handleArgument:
 0x3742158 s [] in BasicCommandLineHandler>activate
 0x3742e98 s BlockClosure>on:do:
 0x37421e8 s BasicCommandLineHandler>activate
 0x3742ef8 s [] in BasicCommandLineHandler class>startUp:
 0x3743018 s BlockClosure>cull:
 0x3743078 s WorkingSession>executeDeferredStartupActions:
 0x3742260 s WorkingSession>runStartup:
 0x3742f58 s WorkingSession>start:
 0x373fac0 s SessionManager>snapshot:andQuit:
 0x373fd60 s [] in SmalltalkImage>snapshot:andQuit:
 0x373fe80 s CurrentExecutionEnvironment class>activate:for:
 0x373ffc0 s DefaultExecutionEnvironment(ExecutionEnvironment)>beActiveDuring:
 0x37400e0 s DefaultExecutionEnvironment class>beActiveDuring:
 0x3740020 s SmalltalkImage>snapshot:andQuit:
 0x3740140 s ImageCleanerCommandLineHandler>activate
 0x37401a0 s ImageCleanerCommandLineHandler class(CommandLineHandler class)>activateWith:
 0x3740200 s [] in PharoCommandLineHandler(BasicCommandLineHandler)>activateSubCommand:
 0x373f668 s BlockClosure>on:do:
 0x373f6e0 s PharoCommandLineHandler(BasicCommandLineHandler)>activateSubCommand:
 0x373f3c8 s PharoCommandLineHandler(BasicCommandLineHandler)>handleSubcommand
 0x373fb20 s PharoCommandLineHandler(BasicCommandLineHandler)>handleArgument:
 0x373f428 s [] in PharoCommandLineHandler(BasicCommandLineHandler)>activate
 0x373f4a0 s BlockClosure>on:do:
 0x373f518 s PharoCommandLineHandler(BasicCommandLineHandler)>activate
 0x373fb80 s PharoCommandLineHandler>activate
 0x373fdc0 s PharoCommandLineHandler class(CommandLineHandler class)>activateWith:
 0x373ff00 s [] in PharoCommandLineHandler class>activateWith:
 0x3740080 s NonInteractiveUIManager(UIManager)>defer:
 0x373d808 s PharoCommandLineHandler class>activateWith:
 0x373fbe0 s [] in BasicCommandLineHandler>activateSubCommand:
 0x373f578 s BlockClosure>on:do:
 0x373d8b0 s BasicCommandLineHandler>activateSubCommand:
 0x373d928 s BasicCommandLineHandler>handleSubcommand
 0x373fc40 s BasicCommandLineHandler>handleArgument:
 0x373d998 s [] in BasicCommandLineHandler>activate
 0x373f5d8 s BlockClosure>on:do:
 0x373da28 s BasicCommandLineHandler>activate
 0x373fca0 s [] in BasicCommandLineHandler class>startUp:
 0x373fe20 s BlockClosure>cull:
 0x373ff60 s WorkingSession>executeDeferredStartupActions:
 0x373daa0 s WorkingSession>runStartup:
 0x373fd00 s WorkingSession>start:
 0x373cf38 s SessionManager>snapshot:andQuit:
 0x373cf98 s [] in SmalltalkImage>snapshot:andQuit:
 0x373cff8 s CurrentExecutionEnvironment class>activate:for:
 0x373d078 s DefaultExecutionEnvironment(ExecutionEnvironment)>beActiveDuring:
 0x373d138 s DefaultExecutionEnvironment class>beActiveDuring:
 0x373d0d8 s SmalltalkImage>snapshot:andQuit:
 0x373baf8 s LoadUpdatesCommandLineHandler>activate
 0x373bb58 s LoadUpdatesCommandLineHandler class(CommandLineHandler class)>activateWith:
 0x373bd18 s [] in PharoCommandLineHandler(BasicCommandLineHandler)>activateSubCommand:
 0x373be98 s BlockClosure>on:do:
 0x373bf10 s PharoCommandLineHandler(BasicCommandLineHandler)>activateSubCommand:
 0x373bf88 s PharoCommandLineHandler(BasicCommandLineHandler)>handleSubcommand
 0x373bfe8 s PharoCommandLineHandler(BasicCommandLineHandler)>handleArgument:
 0x373c060 s [] in PharoCommandLineHandler(BasicCommandLineHandler)>activate
 0x373c0f0 s BlockClosure>on:do:
 0x373c168 s PharoCommandLineHandler(BasicCommandLineHandler)>activate
 0x373c1e0 s PharoCommandLineHandler>activate
 0x373c240 s PharoCommandLineHandler class(CommandLineHandler class)>activateWith:
 0x373c2a0 s [] in PharoCommandLineHandler class>activateWith:
 0x373c300 s NonInteractiveUIManager(UIManager)>defer:
 0x373b560 s PharoCommandLineHandler class>activateWith:
 0x373c360 s [] in BasicCommandLineHandler>activateSubCommand:
 0x373c540 s BlockClosure>on:do:
 0x373b608 s BasicCommandLineHandler>activateSubCommand:
 0x373b680 s BasicCommandLineHandler>handleSubcommand
 0x373c3c0 s BasicCommandLineHandler>handleArgument:
 0x373b6e0 s [] in BasicCommandLineHandler>activate
 0x373c420 s BlockClosure>on:do:
 0x373b770 s BasicCommandLineHandler>activate
 0x373c480 s [] in BasicCommandLineHandler class>startUp:
 0x373c5a0 s BlockClosure>cull:
 0x373c600 s WorkingSession>executeDeferredStartupActions:
 0x373b7e8 s WorkingSession>runStartup:
 0x373c4e0 s WorkingSession>start:
 0x3739048 s SessionManager>snapshot:andQuit:
 0x37392e8 s [] in SmalltalkImage>snapshot:andQuit:
 0x3739408 s CurrentExecutionEnvironment class>activate:for:
 0x3739548 s DefaultExecutionEnvironment(ExecutionEnvironment)>beActiveDuring:
 0x3739668 s DefaultExecutionEnvironment class>beActiveDuring:
 0x37395a8 s SmalltalkImage>snapshot:andQuit:
 0x37396c8 s ImageCleanerCommandLineHandler>activate
 0x3739728 s ImageCleanerCommandLineHandler class(CommandLineHandler class)>activateWith:
 0x3739788 s [] in PharoCommandLineHandler(BasicCommandLineHandler)>activateSubCommand:
 0x3738bd8 s BlockClosure>on:do:
 0x3738c50 s PharoCommandLineHandler(BasicCommandLineHandler)>activateSubCommand:
 0x3738938 s PharoCommandLineHandler(BasicCommandLineHandler)>handleSubcommand
 0x37390a8 s PharoCommandLineHandler(BasicCommandLineHandler)>handleArgument:
 0x3738998 s [] in PharoCommandLineHandler(BasicCommandLineHandler)>activate
 0x3738a10 s BlockClosure>on:do:
 0x3738a88 s PharoCommandLineHandler(BasicCommandLineHandler)>activate
 0x3739108 s PharoCommandLineHandler>activate
 0x3739348 s PharoCommandLineHandler class(CommandLineHandler class)>activateWith:
 0x3739488 s [] in PharoCommandLineHandler class>activateWith:
 0x3739608 s NonInteractiveUIManager(UIManager)>defer:
 0x3736d78 s PharoCommandLineHandler class>activateWith:
 0x3739168 s [] in BasicCommandLineHandler>activateSubCommand:
 0x3738ae8 s BlockClosure>on:do:
 0x3736e20 s BasicCommandLineHandler>activateSubCommand:
 0x3736e98 s BasicCommandLineHandler>handleSubcommand
 0x37391c8 s BasicCommandLineHandler>handleArgument:
 0x3736f08 s [] in BasicCommandLineHandler>activate
 0x3738b48 s BlockClosure>on:do:
 0x3736f98 s BasicCommandLineHandler>activate
 0x3739228 s [] in BasicCommandLineHandler class>startUp:
 0x37393a8 s BlockClosure>cull:
 0x37394e8 s WorkingSession>executeDeferredStartupActions:
 0x3737010 s WorkingSession>runStartup:
 0x3739288 s WorkingSession>start:
 0x37364c0 s SessionManager>snapshot:andQuit:
 0x3736520 s [] in SmalltalkImage>snapshot:andQuit:
 0x3736580 s CurrentExecutionEnvironment class>activate:for:
 0x3736600 s DefaultExecutionEnvironment(ExecutionEnvironment)>beActiveDuring:
 0x37366c0 s DefaultExecutionEnvironment class>beActiveDuring:
 0x3736660 s SmalltalkImage>snapshot:andQuit:
 0x3734d40 s LoadUpdatesCommandLineHandler>activate
 0x3734da0 s LoadUpdatesCommandLineHandler class(CommandLineHandler class)>activateWith:
 0x3734f60 s [] in PharoCommandLineHandler(BasicCommandLineHandler)>activateSubCommand:
 0x37350e0 s BlockClosure>on:do:
 0x3735158 s PharoCommandLineHandler(BasicCommandLineHandler)>activateSubCommand:
 0x37351d0 s PharoCommandLineHandler(BasicCommandLineHandler)>handleSubcommand
 0x3735230 s PharoCommandLineHandler(BasicCommandLineHandler)>handleArgument:
 0x37352a8 s [] in PharoCommandLineHandler(BasicCommandLineHandler)>activate
 0x3735338 s BlockClosure>on:do:
 0x37353b0 s PharoCommandLineHandler(BasicCommandLineHandler)>activate
 0x3735428 s PharoCommandLineHandler>activate
 0x3735488 s PharoCommandLineHandler class(CommandLineHandler class)>activateWith:
 0x37354e8 s [] in PharoCommandLineHandler class>activateWith:
 0x3735548 s NonInteractiveUIManager(UIManager)>defer:
 0x37347a8 s PharoCommandLineHandler class>activateWith:
 0x37355a8 s [] in BasicCommandLineHandler>activateSubCommand:
 0x3735788 s BlockClosure>on:do:
 0x3734850 s BasicCommandLineHandler>activateSubCommand:
 0x37348c8 s BasicCommandLineHandler>handleSubcommand
 0x3735608 s BasicCommandLineHandler>handleArgument:
 0x3734928 s [] in BasicCommandLineHandler>activate
 0x3735668 s BlockClosure>on:do:
 0x37349b8 s BasicCommandLineHandler>activate
 0x37356c8 s [] in BasicCommandLineHandler class>startUp:
 0x37357e8 s BlockClosure>cull:
 0x3735848 s WorkingSession>executeDeferredStartupActions:
 0x3734a30 s WorkingSession>runStartup:
 0x3735728 s WorkingSession>start:
 0x3732290 s SessionManager>snapshot:andQuit:
 0x3732530 s [] in SmalltalkImage>snapshot:andQuit:
 0x3732650 s CurrentExecutionEnvironment class>activate:for:
 0x3732790 s DefaultExecutionEnvironment(ExecutionEnvironment)>beActiveDuring:
 0x37328b0 s DefaultExecutionEnvironment class>beActiveDuring:
 0x37327f0 s SmalltalkImage>snapshot:andQuit:
 0x3732910 s ImageCleanerCommandLineHandler>activate
 0x3732970 s ImageCleanerCommandLineHandler class(CommandLineHandler class)>activateWith:
 0x37329d0 s [] in PharoCommandLineHandler(BasicCommandLineHandler)>activateSubCommand:
 0x3731dd8 s BlockClosure>on:do:
 0x3731e50 s PharoCommandLineHandler(BasicCommandLineHandler)>activateSubCommand:
 0x3731b38 s PharoCommandLineHandler(BasicCommandLineHandler)>handleSubcommand
 0x37322f0 s PharoCommandLineHandler(BasicCommandLineHandler)>handleArgument:
 0x3731b98 s [] in PharoCommandLineHandler(BasicCommandLineHandler)>activate
 0x3731c10 s BlockClosure>on:do:
 0x3731c88 s PharoCommandLineHandler(BasicCommandLineHandler)>activate
 0x3732350 s PharoCommandLineHandler>activate
 0x3732590 s PharoCommandLineHandler class(CommandLineHandler class)>activateWith:
 0x37326d0 s [] in PharoCommandLineHandler class>activateWith:
 0x3732850 s NonInteractiveUIManager(UIManager)>defer:
 0x372ff50 s PharoCommandLineHandler class>activateWith:
 0x37323b0 s [] in BasicCommandLineHandler>activateSubCommand:
 0x3731ce8 s BlockClosure>on:do:
 0x372fff8 s BasicCommandLineHandler>activateSubCommand:
 0x3730070 s BasicCommandLineHandler>handleSubcommand
 0x3732410 s BasicCommandLineHandler>handleArgument:
 0x37300e0 s [] in BasicCommandLineHandler>activate
 0x3731d48 s BlockClosure>on:do:
 0x3730170 s BasicCommandLineHandler>activate
 0x3732470 s [] in BasicCommandLineHandler class>startUp:
 0x37325f0 s BlockClosure>cull:
 0x3732730 s WorkingSession>executeDeferredStartupActions:
 0x37301e8 s WorkingSession>runStartup:
 0x37324d0 s WorkingSession>start:
 0x372f698 s SessionManager>snapshot:andQuit:
 0x372f6f8 s [] in SmalltalkImage>snapshot:andQuit:
 0x372f758 s CurrentExecutionEnvironment class>activate:for:
 0x372f7d8 s DefaultExecutionEnvironment(ExecutionEnvironment)>beActiveDuring:
 0x372f898 s DefaultExecutionEnvironment class>beActiveDuring:
 0x372f838 s SmalltalkImage>snapshot:andQuit:
 0x372aaf0 s LoadUpdatesCommandLineHandler>activate
 0x372ab50 s LoadUpdatesCommandLineHandler class(CommandLineHandler class)>activateWith:
 0x372ad10 s [] in PharoCommandLineHandler(BasicCommandLineHandler)>activateSubCommand:
 0x372ae90 s BlockClosure>on:do:
 0x372af08 s PharoCommandLineHandler(BasicCommandLineHandler)>activateSubCommand:
 0x372af80 s PharoCommandLineHandler(BasicCommandLineHandler)>handleSubcommand
 0x372afe0 s PharoCommandLineHandler(BasicCommandLineHandler)>handleArgument:
 0x372b058 s [] in PharoCommandLineHandler(BasicCommandLineHandler)>activate
 0x372b0e8 s BlockClosure>on:do:
 0x372b160 s PharoCommandLineHandler(BasicCommandLineHandler)>activate
 0x372b1d8 s PharoCommandLineHandler>activate
 0x372b238 s PharoCommandLineHandler class(CommandLineHandler class)>activateWith:
 0x372b298 s [] in PharoCommandLineHandler class>activateWith:
 0x372b2f8 s NonInteractiveUIManager(UIManager)>defer:
 0x372a558 s PharoCommandLineHandler class>activateWith:
 0x372b358 s [] in BasicCommandLineHandler>activateSubCommand:
 0x372b538 s BlockClosure>on:do:
 0x372a600 s BasicCommandLineHandler>activateSubCommand:
 0x372a678 s BasicCommandLineHandler>handleSubcommand
 0x372b3b8 s BasicCommandLineHandler>handleArgument:
 0x372a6d8 s [] in BasicCommandLineHandler>activate
 0x372b418 s BlockClosure>on:do:
 0x372a768 s BasicCommandLineHandler>activate
 0x372b478 s [] in BasicCommandLineHandler class>startUp:
 0x372b598 s BlockClosure>cull:
 0x372b5f8 s WorkingSession>executeDeferredStartupActions:
 0x372a7e0 s WorkingSession>runStartup:
 0x372b4d8 s WorkingSession>start:
 0x3728030 s SessionManager>snapshot:andQuit:
 0x37282d0 s [] in SmalltalkImage>snapshot:andQuit:
 0x37283f0 s CurrentExecutionEnvironment class>activate:for:
 0x3728530 s DefaultExecutionEnvironment(ExecutionEnvironment)>beActiveDuring:
 0x3728650 s DefaultExecutionEnvironment class>beActiveDuring:
 0x3728590 s SmalltalkImage>snapshot:andQuit:
 0x37286b0 s ImageCleanerCommandLineHandler>activate
 0x3728710 s ImageCleanerCommandLineHandler class(CommandLineHandler class)>activateWith:
 0x3728770 s [] in PharoCommandLineHandler(BasicCommandLineHandler)>activateSubCommand:
 0x3727ba8 s BlockClosure>on:do:
 0x3727c20 s PharoCommandLineHandler(BasicCommandLineHandler)>activateSubCommand:
 0x3727908 s PharoCommandLineHandler(BasicCommandLineHandler)>handleSubcommand
 0x3728090 s PharoCommandLineHandler(BasicCommandLineHandler)>handleArgument:
 0x3727968 s [] in PharoCommandLineHandler(BasicCommandLineHandler)>activate
 0x37279e0 s BlockClosure>on:do:
 0x3727a58 s PharoCommandLineHandler(BasicCommandLineHandler)>activate
 0x37280f0 s PharoCommandLineHandler>activate
 0x3728330 s PharoCommandLineHandler class(CommandLineHandler class)>activateWith:
 0x3728470 s [] in PharoCommandLineHandler class>activateWith:
 0x37285f0 s NonInteractiveUIManager(UIManager)>defer:
 0x3725d38 s PharoCommandLineHandler class>activateWith:
 0x3728150 s [] in BasicCommandLineHandler>activateSubCommand:
 0x3727ab8 s BlockClosure>on:do:
 0x3725de0 s BasicCommandLineHandler>activateSubCommand:
 0x3725e58 s BasicCommandLineHandler>handleSubcommand
 0x37281b0 s BasicCommandLineHandler>handleArgument:
 0x3725ec8 s [] in BasicCommandLineHandler>activate
 0x3727b18 s BlockClosure>on:do:
 0x3725f58 s BasicCommandLineHandler>activate
 0x3728210 s [] in BasicCommandLineHandler class>startUp:
 0x3728390 s BlockClosure>cull:
 0x37284d0 s WorkingSession>executeDeferredStartupActions:
 0x3725fd0 s WorkingSession>runStartup:
 0x3728270 s WorkingSession>start:
 0x3725480 s SessionManager>snapshot:andQuit:
 0x37254e0 s [] in SmalltalkImage>snapshot:andQuit:
 0x3725540 s CurrentExecutionEnvironment class>activate:for:
 0x37255c0 s DefaultExecutionEnvironment(ExecutionEnvironment)>beActiveDuring:
 0x3725680 s DefaultExecutionEnvironment class>beActiveDuring:
 0x3725620 s SmalltalkImage>snapshot:andQuit:
 0x3723c50 s LoadUpdatesCommandLineHandler>activate
 0x3723cb0 s LoadUpdatesCommandLineHandler class(CommandLineHandler class)>activateWith:
 0x3723e70 s [] in PharoCommandLineHandler(BasicCommandLineHandler)>activateSubCommand:
 0x3723ff0 s BlockClosure>on:do:
 0x3724068 s PharoCommandLineHandler(BasicCommandLineHandler)>activateSubCommand:
 0x37240e0 s PharoCommandLineHandler(BasicCommandLineHandler)>handleSubcommand
 0x3724140 s PharoCommandLineHandler(BasicCommandLineHandler)>handleArgument:
 0x37241b8 s [] in PharoCommandLineHandler(BasicCommandLineHandler)>activate
 0x3724248 s BlockClosure>on:do:
 0x37242c0 s PharoCommandLineHandler(BasicCommandLineHandler)>activate
 0x3724338 s PharoCommandLineHandler>activate
 0x3724398 s PharoCommandLineHandler class(CommandLineHandler class)>activateWith:
 0x37243f8 s [] in PharoCommandLineHandler class>activateWith:
 0x3724458 s NonInteractiveUIManager(UIManager)>defer:
 0x37236b8 s PharoCommandLineHandler class>activateWith:
 0x37244b8 s [] in BasicCommandLineHandler>activateSubCommand:
 0x3724698 s BlockClosure>on:do:
 0x3723760 s BasicCommandLineHandler>activateSubCommand:
 0x37237d8 s BasicCommandLineHandler>handleSubcommand
 0x3724518 s BasicCommandLineHandler>handleArgument:
 0x3723838 s [] in BasicCommandLineHandler>activate
 0x3724578 s BlockClosure>on:do:
 0x37238c8 s BasicCommandLineHandler>activate
 0x37245d8 s [] in BasicCommandLineHandler class>startUp:
 0x37246f8 s BlockClosure>cull:
 0x3724758 s WorkingSession>executeDeferredStartupActions:
 0x3723940 s WorkingSession>runStartup:
 0x3724638 s WorkingSession>start:
 0x3721190 s SessionManager>snapshot:andQuit:
 0x3721430 s [] in SmalltalkImage>snapshot:andQuit:
 0x3721550 s CurrentExecutionEnvironment class>activate:for:
 0x3721690 s DefaultExecutionEnvironment(ExecutionEnvironment)>beActiveDuring:
 0x37217b0 s DefaultExecutionEnvironment class>beActiveDuring:
 0x37216f0 s SmalltalkImage>snapshot:andQuit:
 0x3721810 s ImageCleanerCommandLineHandler>activate
 0x3721870 s ImageCleanerCommandLineHandler class(CommandLineHandler class)>activateWith:
 0x37218d0 s [] in PharoCommandLineHandler(BasicCommandLineHandler)>activateSubCommand:
 0x3720ca8 s BlockClosure>on:do:
 0x3720d20 s PharoCommandLineHandler(BasicCommandLineHandler)>activateSubCommand:
 0x3720a08 s PharoCommandLineHandler(BasicCommandLineHandler)>handleSubcommand
 0x37211f0 s PharoCommandLineHandler(BasicCommandLineHandler)>handleArgument:
 0x3720a68 s [] in PharoCommandLineHandler(BasicCommandLineHandler)>activate
 0x3720ae0 s BlockClosure>on:do:
 0x3720b58 s PharoCommandLineHandler(BasicCommandLineHandler)>activate
 0x3721250 s PharoCommandLineHandler>activate
 0x3721490 s PharoCommandLineHandler class(CommandLineHandler class)>activateWith:
 0x37215d0 s [] in PharoCommandLineHandler class>activateWith:
 0x3721750 s NonInteractiveUIManager(UIManager)>defer:
 0x371ee20 s PharoCommandLineHandler class>activateWith:
 0x37212b0 s [] in BasicCommandLineHandler>activateSubCommand:
 0x3720bb8 s BlockClosure>on:do:
 0x371eec8 s BasicCommandLineHandler>activateSubCommand:
 0x371ef40 s BasicCommandLineHandler>handleSubcommand
 0x3721310 s BasicCommandLineHandler>handleArgument:
 0x371efb0 s [] in BasicCommandLineHandler>activate
 0x3720c18 s BlockClosure>on:do:
 0x371f040 s BasicCommandLineHandler>activate
 0x3721370 s [] in BasicCommandLineHandler class>startUp:
 0x37214f0 s BlockClosure>cull:
 0x3721630 s WorkingSession>executeDeferredStartupActions:
 0x371f0b8 s WorkingSession>runStartup:
 0x37213d0 s WorkingSession>start:
 0x371e568 s SessionManager>snapshot:andQuit:
 0x371e5c8 s [] in SmalltalkImage>snapshot:andQuit:
 0x371e628 s CurrentExecutionEnvironment class>activate:for:
 0x371e6a8 s DefaultExecutionEnvironment(ExecutionEnvironment)>beActiveDuring:
 0x371e768 s DefaultExecutionEnvironment class>beActiveDuring:
 0x371e708 s SmalltalkImage>snapshot:andQuit:
 0x371d888 s LoadUpdatesCommandLineHandler>activate
 0x371d8e8 s LoadUpdatesCommandLineHandler class(CommandLineHandler class)>activateWith:
 0x371daa8 s [] in PharoCommandLineHandler(BasicCommandLineHandler)>activateSubCommand:
 0x371dc28 s BlockClosure>on:do:
 0x371dca0 s PharoCommandLineHandler(BasicCommandLineHandler)>activateSubCommand:
 0x371dd18 s PharoCommandLineHandler(BasicCommandLineHandler)>handleSubcommand
 0x371dd78 s PharoCommandLineHandler(BasicCommandLineHandler)>handleArgument:
 0x371ddf0 s [] in PharoCommandLineHandler(BasicCommandLineHandler)>activate
 0x371de80 s BlockClosure>on:do:
 0x371def8 s PharoCommandLineHandler(BasicCommandLineHandler)>activate
 0x371df70 s PharoCommandLineHandler>activate
 0x371dfd0 s PharoCommandLineHandler class(CommandLineHandler class)>activateWith:
 0x371e030 s [] in PharoCommandLineHandler class>activateWith:
 0x371e090 s NonInteractiveUIManager(UIManager)>defer:
 0x371d2f0 s PharoCommandLineHandler class>activateWith:
 0x371e0f0 s [] in BasicCommandLineHandler>activateSubCommand:
 0x371e2d0 s BlockClosure>on:do:
 0x371d398 s BasicCommandLineHandler>activateSubCommand:
 0x371d410 s BasicCommandLineHandler>handleSubcommand
 0x371e150 s BasicCommandLineHandler>handleArgument:
 0x371d470 s [] in BasicCommandLineHandler>activate
 0x371e1b0 s BlockClosure>on:do:
 0x371d500 s BasicCommandLineHandler>activate
 0x371e210 s [] in BasicCommandLineHandler class>startUp:
 0x371e330 s BlockClosure>cull:
 0x371e390 s WorkingSession>executeDeferredStartupActions:
 0x371d578 s WorkingSession>runStartup:
 0x371e270 s WorkingSession>start:
 0x371adc8 s SessionManager>snapshot:andQuit:
 0x371b068 s [] in SmalltalkImage>snapshot:andQuit:
 0x371b188 s CurrentExecutionEnvironment class>activate:for:
 0x371b2c8 s DefaultExecutionEnvironment(ExecutionEnvironment)>beActiveDuring:
 0x371b3e8 s DefaultExecutionEnvironment class>beActiveDuring:
 0x371b328 s SmalltalkImage>snapshot:andQuit:
 0x371b448 s ImageCleanerCommandLineHandler>activate
 0x371b4a8 s ImageCleanerCommandLineHandler class(CommandLineHandler class)>activateWith:
 0x371b508 s [] in PharoCommandLineHandler(BasicCommandLineHandler)>activateSubCommand:
 0x371a970 s BlockClosure>on:do:
 0x371a9e8 s PharoCommandLineHandler(BasicCommandLineHandler)>activateSubCommand:
 0x371a6d0 s PharoCommandLineHandler(BasicCommandLineHandler)>handleSubcommand
 0x371ae28 s PharoCommandLineHandler(BasicCommandLineHandler)>handleArgument:
 0x371a730 s [] in PharoCommandLineHandler(BasicCommandLineHandler)>activate
 0x371a7a8 s BlockClosure>on:do:
 0x371a820 s PharoCommandLineHandler(BasicCommandLineHandler)>activate
 0x371ae88 s PharoCommandLineHandler>activate
 0x371b0c8 s PharoCommandLineHandler class(CommandLineHandler class)>activateWith:
 0x371b208 s [] in PharoCommandLineHandler class>activateWith:
 0x371b388 s NonInteractiveUIManager(UIManager)>defer:
 0x3718ae8 s PharoCommandLineHandler class>activateWith:
 0x371aee8 s [] in BasicCommandLineHandler>activateSubCommand:
 0x371a880 s BlockClosure>on:do:
 0x3718b90 s BasicCommandLineHandler>activateSubCommand:
 0x3718c08 s BasicCommandLineHandler>handleSubcommand
 0x371af48 s BasicCommandLineHandler>handleArgument:
 0x3718c78 s [] in BasicCommandLineHandler>activate
 0x371a8e0 s BlockClosure>on:do:
 0x3718d08 s BasicCommandLineHandler>activate
 0x371afa8 s [] in BasicCommandLineHandler class>startUp:
 0x371b128 s BlockClosure>cull:
 0x371b268 s WorkingSession>executeDeferredStartupActions:
 0x3718d80 s WorkingSession>runStartup:
 0x371b008 s WorkingSession>start:
 0x3718230 s SessionManager>snapshot:andQuit:
 0x3718290 s [] in SmalltalkImage>snapshot:andQuit:
 0x37182f0 s CurrentExecutionEnvironment class>activate:for:
 0x3718370 s DefaultExecutionEnvironment(ExecutionEnvironment)>beActiveDuring:
 0x3718430 s DefaultExecutionEnvironment class>beActiveDuring:
 0x37183d0 s SmalltalkImage>snapshot:andQuit:
 0x3716768 s LoadUpdatesCommandLineHandler>activate
 0x37167c8 s LoadUpdatesCommandLineHandler class(CommandLineHandler class)>activateWith:
 0x3716988 s [] in PharoCommandLineHandler(BasicCommandLineHandler)>activateSubCommand:
 0x3716b08 s BlockClosure>on:do:
 0x3716b80 s PharoCommandLineHandler(BasicCommandLineHandler)>activateSubCommand:
 0x3716bf8 s PharoCommandLineHandler(BasicCommandLineHandler)>handleSubcommand
 0x3716c58 s PharoCommandLineHandler(BasicCommandLineHandler)>handleArgument:
 0x3716cd0 s [] in PharoCommandLineHandler(BasicCommandLineHandler)>activate
 0x3716d60 s BlockClosure>on:do:
 0x3716dd8 s PharoCommandLineHandler(BasicCommandLineHandler)>activate
 0x3716e50 s PharoCommandLineHandler>activate
 0x3716eb0 s PharoCommandLineHandler class(CommandLineHandler class)>activateWith:
 0x3716f10 s [] in PharoCommandLineHandler class>activateWith:
 0x3716f70 s NonInteractiveUIManager(UIManager)>defer:
 0x37161d0 s PharoCommandLineHandler class>activateWith:
 0x3716fd0 s [] in BasicCommandLineHandler>activateSubCommand:
 0x37171b0 s BlockClosure>on:do:
 0x3716278 s BasicCommandLineHandler>activateSubCommand:
 0x37162f0 s BasicCommandLineHandler>handleSubcommand
 0x3717030 s BasicCommandLineHandler>handleArgument:
 0x3716350 s [] in BasicCommandLineHandler>activate
 0x3717090 s BlockClosure>on:do:
 0x37163e0 s BasicCommandLineHandler>activate
 0x37170f0 s [] in BasicCommandLineHandler class>startUp:
 0x3717210 s BlockClosure>cull:
 0x3717270 s WorkingSession>executeDeferredStartupActions:
 0x3716458 s WorkingSession>runStartup:
 0x3717150 s WorkingSession>start:
 0x3713ca8 s SessionManager>snapshot:andQuit:
 0x3713f48 s [] in SmalltalkImage>snapshot:andQuit:
 0x3714068 s CurrentExecutionEnvironment class>activate:for:
 0x37141a8 s DefaultExecutionEnvironment(ExecutionEnvironment)>beActiveDuring:
 0x37142c8 s DefaultExecutionEnvironment class>beActiveDuring:
 0x3714208 s SmalltalkImage>snapshot:andQuit:
 0x3714328 s ImageCleanerCommandLineHandler>activate
 0x3714388 s ImageCleanerCommandLineHandler class(CommandLineHandler class)>activateWith:
 0x37143e8 s [] in PharoCommandLineHandler(BasicCommandLineHandler)>activateSubCommand:
 0x37137c8 s BlockClosure>on:do:
 0x3713840 s PharoCommandLineHandler(BasicCommandLineHandler)>activateSubCommand:
 0x3713528 s PharoCommandLineHandler(BasicCommandLineHandler)>handleSubcommand
 0x3713d08 s PharoCommandLineHandler(BasicCommandLineHandler)>handleArgument:
 0x3713588 s [] in PharoCommandLineHandler(BasicCommandLineHandler)>activate
 0x3713600 s BlockClosure>on:do:
 0x3713678 s PharoCommandLineHandler(BasicCommandLineHandler)>activate
 0x3713d68 s PharoCommandLineHandler>activate
 0x3713fa8 s PharoCommandLineHandler class(CommandLineHandler class)>activateWith:
 0x37140e8 s [] in PharoCommandLineHandler class>activateWith:
 0x3714268 s NonInteractiveUIManager(UIManager)>defer:
 0x3711958 s PharoCommandLineHandler class>activateWith:
 0x3713dc8 s [] in BasicCommandLineHandler>activateSubCommand:
 0x37136d8 s BlockClosure>on:do:
 0x3711a00 s BasicCommandLineHandler>activateSubCommand:
 0x3711a78 s BasicCommandLineHandler>handleSubcommand
 0x3713e28 s BasicCommandLineHandler>handleArgument:
 0x3711ae8 s [] in BasicCommandLineHandler>activate
 0x3713738 s BlockClosure>on:do:
 0x3711b78 s BasicCommandLineHandler>activate
 0x3713e88 s [] in BasicCommandLineHandler class>startUp:
 0x3714008 s BlockClosure>cull:
 0x3714148 s WorkingSession>executeDeferredStartupActions:
 0x3711bf0 s WorkingSession>runStartup:
 0x3713ee8 s WorkingSession>start:
 0x37110a0 s SessionManager>snapshot:andQuit:
 0x3711100 s [] in SmalltalkImage>snapshot:andQuit:
 0x3711160 s CurrentExecutionEnvironment class>activate:for:
 0x37111e0 s DefaultExecutionEnvironment(ExecutionEnvironment)>beActiveDuring:
 0x37112a0 s DefaultExecutionEnvironment class>beActiveDuring:
 0x3711240 s SmalltalkImage>snapshot:andQuit:
 0x370d498 s LoadUpdatesCommandLineHandler>activate
 0x370d4f8 s LoadUpdatesCommandLineHandler class(CommandLineHandler class)>activateWith:
 0x370d6b8 s [] in PharoCommandLineHandler(BasicCommandLineHandler)>activateSubCommand:
 0x370d838 s BlockClosure>on:do:
 0x370d8b0 s PharoCommandLineHandler(BasicCommandLineHandler)>activateSubCommand:
 0x370d928 s PharoCommandLineHandler(BasicCommandLineHandler)>handleSubcommand
 0x370d988 s PharoCommandLineHandler(BasicCommandLineHandler)>handleArgument:
 0x370da00 s [] in PharoCommandLineHandler(BasicCommandLineHandler)>activate
 0x370da90 s BlockClosure>on:do:
 0x370db08 s PharoCommandLineHandler(BasicCommandLineHandler)>activate
 0x370db80 s PharoCommandLineHandler>activate
 0x370dbe0 s PharoCommandLineHandler class(CommandLineHandler class)>activateWith:
 0x370dc40 s [] in PharoCommandLineHandler class>activateWith:
 0x370dca0 s NonInteractiveUIManager(UIManager)>defer:
 0x370cf00 s PharoCommandLineHandler class>activateWith:
 0x370dd00 s [] in BasicCommandLineHandler>activateSubCommand:
 0x370dee0 s BlockClosure>on:do:
 0x370cfa8 s BasicCommandLineHandler>activateSubCommand:
 0x370d020 s BasicCommandLineHandler>handleSubcommand
 0x370dd60 s BasicCommandLineHandler>handleArgument:
 0x370d080 s [] in BasicCommandLineHandler>activate
 0x370ddc0 s BlockClosure>on:do:
 0x370d110 s BasicCommandLineHandler>activate
 0x370de20 s [] in BasicCommandLineHandler class>startUp:
 0x370df40 s BlockClosure>cull:
 0x370dfa0 s WorkingSession>executeDeferredStartupActions:
 0x370d188 s WorkingSession>runStartup:
 0x370de80 s WorkingSession>start:
 0x370a9d8 s SessionManager>snapshot:andQuit:
 0x370ac78 s [] in SmalltalkImage>snapshot:andQuit:
 0x370ad98 s CurrentExecutionEnvironment class>activate:for:
 0x370aed8 s DefaultExecutionEnvironment(ExecutionEnvironment)>beActiveDuring:
 0x370aff8 s DefaultExecutionEnvironment class>beActiveDuring:
 0x370af38 s SmalltalkImage>snapshot:andQuit:
 0x370b058 s ImageCleanerCommandLineHandler>activate
 0x370b0b8 s ImageCleanerCommandLineHandler class(CommandLineHandler class)>activateWith:
 0x370b118 s [] in PharoCommandLineHandler(BasicCommandLineHandler)>activateSubCommand:
 0x370a580 s BlockClosure>on:do:
 0x370a5f8 s PharoCommandLineHandler(BasicCommandLineHandler)>activateSubCommand:
 0x370a2e0 s PharoCommandLineHandler(BasicCommandLineHandler)>handleSubcommand
 0x370aa38 s PharoCommandLineHandler(BasicCommandLineHandler)>handleArgument:
 0x370a340 s [] in PharoCommandLineHandler(BasicCommandLineHandler)>activate
 0x370a3b8 s BlockClosure>on:do:
 0x370a430 s PharoCommandLineHandler(BasicCommandLineHandler)>activate
 0x370aa98 s PharoCommandLineHandler>activate
 0x370acd8 s PharoCommandLineHandler class(CommandLineHandler class)>activateWith:
 0x370ae18 s [] in PharoCommandLineHandler class>activateWith:
 0x370af98 s NonInteractiveUIManager(UIManager)>defer:
 0x37086f8 s PharoCommandLineHandler class>activateWith:
 0x370aaf8 s [] in BasicCommandLineHandler>activateSubCommand:
 0x370a490 s BlockClosure>on:do:
 0x37087a0 s BasicCommandLineHandler>activateSubCommand:
 0x3708818 s BasicCommandLineHandler>handleSubcommand
 0x370ab58 s BasicCommandLineHandler>handleArgument:
 0x3708888 s [] in BasicCommandLineHandler>activate
 0x370a4f0 s BlockClosure>on:do:
 0x3708918 s BasicCommandLineHandler>activate
 0x370abb8 s [] in BasicCommandLineHandler class>startUp:
 0x370ad38 s BlockClosure>cull:
 0x370ae78 s WorkingSession>executeDeferredStartupActions:
 0x3708990 s WorkingSession>runStartup:
 0x370ac18 s WorkingSession>start:
 0x3707e40 s SessionManager>snapshot:andQuit:
 0x3707ea0 s [] in SmalltalkImage>snapshot:andQuit:
 0x3707f00 s CurrentExecutionEnvironment class>activate:for:
 0x3707f80 s DefaultExecutionEnvironment(ExecutionEnvironment)>beActiveDuring:
 0x3708040 s DefaultExecutionEnvironment class>beActiveDuring:
 0x3707fe0 s SmalltalkImage>snapshot:andQuit:
 0x37067b0 s LoadUpdatesCommandLineHandler>activate
 0x3706810 s LoadUpdatesCommandLineHandler class(CommandLineHandler class)>activateWith:
 0x37069d0 s [] in PharoCommandLineHandler(BasicCommandLineHandler)>activateSubCommand:
 0x3706b50 s BlockClosure>on:do:
 0x3706bc8 s PharoCommandLineHandler(BasicCommandLineHandler)>activateSubCommand:
 0x3706c40 s PharoCommandLineHandler(BasicCommandLineHandler)>handleSubcommand
 0x3706ca0 s PharoCommandLineHandler(BasicCommandLineHandler)>handleArgument:
 0x3706d18 s [] in PharoCommandLineHandler(BasicCommandLineHandler)>activate
 0x3706da8 s BlockClosure>on:do:
 0x3706e20 s PharoCommandLineHandler(BasicCommandLineHandler)>activate
 0x3706e98 s PharoCommandLineHandler>activate
 0x3706ef8 s PharoCommandLineHandler class(CommandLineHandler class)>activateWith:
 0x3706f58 s [] in PharoCommandLineHandler class>activateWith:
 0x3706fb8 s NonInteractiveUIManager(UIManager)>defer:
 0x3706218 s PharoCommandLineHandler class>activateWith:
 0x3707018 s [] in BasicCommandLineHandler>activateSubCommand:
 0x37071f8 s BlockClosure>on:do:
 0x37062c0 s BasicCommandLineHandler>activateSubCommand:
 0x3706338 s BasicCommandLineHandler>handleSubcommand
 0x3707078 s BasicCommandLineHandler>handleArgument:
 0x3706398 s [] in BasicCommandLineHandler>activate
 0x37070d8 s BlockClosure>on:do:
 0x3706428 s BasicCommandLineHandler>activate
 0x3707138 s [] in BasicCommandLineHandler class>startUp:
 0x3707258 s BlockClosure>cull:
 0x37072b8 s WorkingSession>executeDeferredStartupActions:
 0x37064a0 s WorkingSession>runStartup:
 0x3707198 s WorkingSession>start:
 0x3703cf0 s SessionManager>snapshot:andQuit:
 0x3703f90 s [] in SmalltalkImage>snapshot:andQuit:
 0x37040b0 s CurrentExecutionEnvironment class>activate:for:
 0x37041f0 s DefaultExecutionEnvironment(ExecutionEnvironment)>beActiveDuring:
 0x3704310 s DefaultExecutionEnvironment class>beActiveDuring:
 0x3704250 s SmalltalkImage>snapshot:andQuit:
 0x3704370 s ImageCleanerCommandLineHandler>activate
 0x37043d0 s ImageCleanerCommandLineHandler class(CommandLineHandler class)>activateWith:
 0x3704430 s [] in PharoCommandLineHandler(BasicCommandLineHandler)>activateSubCommand:
 0x3703578 s BlockClosure>on:do:
 0x37035f0 s PharoCommandLineHandler(BasicCommandLineHandler)>activateSubCommand:
 0x37032d8 s PharoCommandLineHandler(BasicCommandLineHandler)>handleSubcommand
 0x3703d50 s PharoCommandLineHandler(BasicCommandLineHandler)>handleArgument:
 0x3703338 s [] in PharoCommandLineHandler(BasicCommandLineHandler)>activate
 0x37033b0 s BlockClosure>on:do:
 0x3703428 s PharoCommandLineHandler(BasicCommandLineHandler)>activate
 0x3703db0 s PharoCommandLineHandler>activate
 0x3703ff0 s PharoCommandLineHandler class(CommandLineHandler class)>activateWith:
 0x3704130 s [] in PharoCommandLineHandler class>activateWith:
 0x37042b0 s NonInteractiveUIManager(UIManager)>defer:
 0x37016f0 s PharoCommandLineHandler class>activateWith:
 0x3703e10 s [] in BasicCommandLineHandler>activateSubCommand:
 0x3703488 s BlockClosure>on:do:
 0x3701798 s BasicCommandLineHandler>activateSubCommand:
 0x3701810 s BasicCommandLineHandler>handleSubcommand
 0x3703e70 s BasicCommandLineHandler>handleArgument:
 0x3701880 s [] in BasicCommandLineHandler>activate
 0x37034e8 s BlockClosure>on:do:
 0x3701910 s BasicCommandLineHandler>activate
 0x3703ed0 s [] in BasicCommandLineHandler class>startUp:
 0x3704050 s BlockClosure>cull:
 0x3704190 s WorkingSession>executeDeferredStartupActions:
 0x3701988 s WorkingSession>runStartup:
 0x3703f30 s WorkingSession>start:
 0x37010f8 s SessionManager>snapshot:andQuit:
 0x3701158 s [] in SmalltalkImage>snapshot:andQuit:
 0x37011b8 s CurrentExecutionEnvironment class>activate:for:
 0x3701238 s DefaultExecutionEnvironment(ExecutionEnvironment)>beActiveDuring:
 0x37012f8 s DefaultExecutionEnvironment class>beActiveDuring:
 0x3701298 s SmalltalkImage>snapshot:andQuit:
 0x36ff7f0 s LoadUpdatesCommandLineHandler>activate
 0x36ff850 s LoadUpdatesCommandLineHandler class(CommandLineHandler class)>activateWith:
 0x36ff8b0 s [] in PharoCommandLineHandler(BasicCommandLineHandler)>activateSubCommand:
 0x36ff910 s BlockClosure>on:do:
 0x36ff988 s PharoCommandLineHandler(BasicCommandLineHandler)>activateSubCommand:
 0x36ffa00 s PharoCommandLineHandler(BasicCommandLineHandler)>handleSubcommand
 0x36ffa60 s PharoCommandLineHandler(BasicCommandLineHandler)>handleArgument:
 0x36ffad8 s [] in PharoCommandLineHandler(BasicCommandLineHandler)>activate
 0x36ffb68 s BlockClosure>on:do:
 0x36ffbe0 s PharoCommandLineHandler(BasicCommandLineHandler)>activate
 0x36ffc58 s PharoCommandLineHandler>activate
 0x36ffcb8 s PharoCommandLineHandler class(CommandLineHandler class)>activateWith:
 0x36ffd18 s [] in PharoCommandLineHandler class>activateWith:
 0x36ffd78 s NonInteractiveUIManager(UIManager)>defer:
 0x36fecc0 s PharoCommandLineHandler class>activateWith:
 0x36ff420 s [] in BasicCommandLineHandler>activateSubCommand:
 0x36ff600 s BlockClosure>on:do:
 0x36fed68 s BasicCommandLineHandler>activateSubCommand:
 0x36fede0 s BasicCommandLineHandler>handleSubcommand
 0x36ff480 s BasicCommandLineHandler>handleArgument:
 0x36fee40 s [] in BasicCommandLineHandler>activate
 0x36ff4e0 s BlockClosure>on:do:
 0x36feed0 s BasicCommandLineHandler>activate
 0x36ff540 s [] in BasicCommandLineHandler class>startUp:
 0x36ff660 s BlockClosure>cull:
 0x36ff6c0 s WorkingSession>executeDeferredStartupActions:
 0x36fef48 s WorkingSession>runStartup:
 0x36ff5a0 s WorkingSession>start:
 0x36eb490 s SessionManager>snapshot:andQuit:
 0x36f1e70 s [] in SmalltalkImage>snapshot:andQuit:
 0x36f2448 s CurrentExecutionEnvironment class>activate:for:
 0x36f2d20 s DefaultExecutionEnvironment(ExecutionEnvironment)>beActiveDuring:
 0x36f3b20 s DefaultExecutionEnvironment class>beActiveDuring:
 0x36f2d80 s SmalltalkImage>snapshot:andQuit:
 0x36f3b80 s [] in WorldState class>saveAndQuit
 0x36f49b0 s BlockClosure>ensure:
 0x36f6a58 s CursorWithMask(Cursor)>showWhile:
 0x36f6ad0 s WorldState class>saveAndQuit
 0x36f8e28 s [] in ToggleMenuItemMorph(MenuItemMorph)>invokeWithEvent:
 0x36fa938 s BlockClosure>ensure:
 0x36fba10 s CursorWithMask(Cursor)>showWhile:
 0x36fba88 s ToggleMenuItemMorph(MenuItemMorph)>invokeWithEvent:
 0x36fbe88 s ToggleMenuItemMorph(MenuItemMorph)>mouseUp:
 0x36fc0e8 s ToggleMenuItemMorph(MenuItemMorph)>handleMouseUp:
 0x36fc148 s MouseButtonEvent>sentTo:
 0x36fc1a8 s ToggleMenuItemMorph(Morph)>handleEvent:
 0x36fc208 s MorphicEventDispatcher>dispatchDefault:with:
 0x36fc268 s MorphicEventDispatcher>handleMouseUp:
 0x36fc2c8 s MouseButtonEvent>sentTo:
 0x36fc328 s [] in MorphicEventDispatcher>dispatchEvent:with:
 0x36fc388 s BlockClosure>ensure:
 0x36fc400 s MorphicEventDispatcher>dispatchEvent:with:
 0x36fc478 s ToggleMenuItemMorph(Morph)>processEvent:using:
 0x36fc4d8 s MorphicEventDispatcher>dispatchDefault:with:
 0x36fc538 s MorphicEventDispatcher>handleMouseUp:
 0x36fc5c8 s MouseButtonEvent>sentTo:
 0x36fc628 s [] in MorphicEventDispatcher>dispatchEvent:with:
 0x36fc688 s BlockClosure>ensure:
 0x36fc700 s MorphicEventDispatcher>dispatchEvent:with:
 0x36fc778 s MenuMorph(Morph)>processEvent:using:
 0x36fc7d8 s MenuMorph(Morph)>processEvent:
 0x36fc838 s MenuMorph>handleFocusEvent:
 0x36fc898 s [] in HandMorph>sendFocusEvent:to:clear:
 0x36fc8f8 s BlockClosure>on:do:
 0x36fc988 s WorldMorph(PasteUpMorph)>becomeActiveDuring:
 0x36fca08 s HandMorph>sendFocusEvent:to:clear:
 0x36fca90 s HandMorph>sendEvent:focus:clear:
 0x36fcb18 s HandMorph>sendMouseEvent:
 0x36fcb78 s HandMorph>handleEvent:
 0x36fcbd8 s HandMorph>processEventsFromQueue:
 0x36fcc38 s HandMorph>processEvents
 0x36fcc98 s [] in WorldState>doOneCycleNowFor:
 0x36fccf8 s Array(SequenceableCollection)>do:
 0x36fcd70 s WorldState>handsDo:
 0x36fcdd0 s WorldState>doOneCycleNowFor:
 0x36fce30 s WorldState>doOneCycleFor:
 0x36fce90 s WorldMorph>doOneCycle
 0x36fcef0 s WorldMorph class>doOneCycle
 0x350ab70 s [] in MorphicUIManager>spawnNewProcess
 0x350aa10 s [] in BlockClosure>newProcess

Most recent primitives
new:
comments
comments
nextToken
nextToken
indexOfAscii:inString:startingAt:
stringHash:initialHash:
compare:with:collated:
length
basicNew
basicNew
parseLiteralArrayObject
indexOfAscii:inString:startingAt:
stringHash:initialHash:
compare:with:collated:
=
parseLiteralArrayObject
start
start
start
start
start
indexOfAscii:inString:startingAt:
stringHash:initialHash:
compare:with:collated:
start
indexOfAscii:inString:startingAt:
stringHash:initialHash:
compare:with:collated:
start
start
length
basicNew
value:
=
=
step
step
step
compare:with:collated:
basicNew
compare:with:collated:
stringHash:initialHash:
compare:with:collated:
basicNew
findSubstringViaPrimitive:in:startingAt:matchTable:
indexOfAscii:inString:startingAt:
indexOfAscii:inString:startingAt:
indexOfAscii:inString:startingAt:
stringHash:initialHash:
compare:with:collated:
basicNew
basicNew
basicNew
basicNew
stringHash:initialHash:
stringHash:initialHash:
stringHash:initialHash:
stringHash:initialHash:
stringHash:initialHash:
**StackOverflow**
stringHash:initialHash:
stringHash:initialHash:
stringHash:initialHash:
stringHash:initialHash:
stringHash:initialHash:
stringHash:initialHash:
stringHash:initialHash:
stringHash:initialHash:
stringHash:initialHash:
stringHash:initialHash:
stringHash:initialHash:
stringHash:initialHash:
basicNew
basicNew
basicNew
basicNew
basicNew
basicNew
stringHash:initialHash:
basicNew
basicNew
basicNew
basicNew
stringHash:initialHash:
stringHash:initialHash:
**StackOverflow**
stringHash:initialHash:
stringHash:initialHash:
stringHash:initialHash:
stringHash:initialHash:
basicIdentityHash
stringHash:initialHash:
**StackOverflow**
stringHash:initialHash:
stringHash:initialHash:
stringHash:initialHash:
compare:with:collated:
value:
stringHash:initialHash:
stringHash:initialHash:
stringHash:initialHash:
compare:with:collated:
stringHash:initialHash:
stringHash:initialHash:
stringHash:initialHash:
stringHash:initialHash:
stringHash:initialHash:
basicNew
basicNew
class
basicNew
primitiveChangeClassTo:
**StackOverflow**
stringHash:initialHash:
**StackOverflow**
stringHash:initialHash:
**StackOverflow**
class
primitiveChangeClassTo:
class
basicNew
primitiveChangeClassTo:
basicNew:
value:
stringHash:initialHash:
stringHash:initialHash:
stringHash:initialHash:
stringHash:initialHash:
class
stringHash:initialHash:
compare:with:collated:
at:
headerWord
perform:
externalTypeWithArity
stringHash:initialHash:
compare:with:collated:
basicNew
basicNew:
replaceFrom:to:with:startingAt:
value:
stringHash:initialHash:
stringHash:initialHash:
basicNew
value:
stringHash:initialHash:
compare:with:collated:
basicNew
class
basicNew
basicNew
needsArityPacking
>
basicNew
basicNew
stringHash:initialHash:
stringHash:initialHash:
stringHash:initialHash:
stringHash:initialHash:
stringHash:initialHash:
stringHash:initialHash:
stringHash:initialHash:
stringHash:initialHash:
stringHash:initialHash:
stringHash:initialHash:
stringHash:initialHash:
stringHash:initialHash:
stringHash:initialHash:
stringHash:initialHash:
stringHash:initialHash:
stringHash:initialHash:
stringHash:initialHash:
stringHash:initialHash:
basicNew
basicIdentityHash
basicNew
basicNew
basicNew
basicNew
basicNew
basicNew
basicIdentityHash
value
basicNew
basicNew
stringHash:initialHash:
basicIdentityHash
stringHash:initialHash:
findSubstring:in:startingAt:matchTable:
indexOfAscii:inString:startingAt:
indexOfAscii:inString:startingAt:
stringHash:initialHash:
stringHash:initialHash:
basicNew
stringHash:initialHash:
compare:with:collated:
perform:
at:put:
at:put:
at:put:
at:put:
newMethod:header:
at:put:
at:put:
at:put:
at:put:
at:put:
at:put:
at:put:
at:put:
at:put:
at:put:
objectAt:put:
objectAt:put:
objectAt:put:
objectAt:put:
objectAt:put:
class
class
class
objectAt:put:
stringHash:initialHash:
objectAt:put:
stringHash:initialHash:
objectAt:put:
objectAt:put:
class
basicNew:
basicAt:put:
basicSize
basicAt:
objectAt:put:
basicAt:
at:put:
flushCache
basicNew
basicNew
new:
size
species
basicIdentityHash
header
header
header
basicIdentityHash
basicIdentityHash
basicIdentityHash
basicIdentityHash
at:
at:
new:
tempAt:
at:put:
withArgs:executeMethod:
invokeWithArguments:

stack page bytes 4096 available headroom 2788 minimum unused headroom 3012

        (Segmentation fault)



Reply | Threaded
Open this post in threaded view
|

Re: Unable to compile myself Pharo

Ben Coman


On Fri, 7 Dec 2018 at 01:43, Alexandre Garreau <[hidden email]> wrote:
I built the VM and when running the Pharo.image file got with curl by
the site, it runs but warns the VM is too old for this image (strangely,
since I built the git version),

That warning can occur if you didn't run "scripts/updateSCCSVersions" once on your fresh clone
(as described in the repo README, but its a common miss)

 
and when trying to run the one sitting
in the pharo-launcher archive (PharoLauncher.image), it segfaults (is
this normal? can that be easily fixed, or…?):

Its not normal.  Try updateSCCSVersions first and then we'll see if there is still a problem to sort out.
 


Segmentation fault Thu Dec  6 18:41:41 2018


/usr/local/lib/squeak/5.0-/squeak
Pharo VM version: 5.0-  Thu Dec  6 17:09:52 CET 2018 gcc 6.3.0 [Production Spur VM]
Built from: CoInterpreter VMMaker.oscog-eem.2488 uuid: 3d088675-fa5c-452e-8063-001ff1d4ab81 Dec  6 2018
With: StackToRegisterMappingCogit VMMaker.oscog-eem.2482 uuid: 7df020b4-6565-4768-9e4a-75bc5464ed95 Dec  6 2018
Revision: VM:   Date:  CommitHash:  Plugins: 
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ these fields are blank - I think updateSCCSVersions provides them.

cheers -ben
 
Build host: Linux portable.galex-713.eu 4.9.0-8-686-pae #1 SMP Debian 4.9.130-2 (2018-10-27) i686 GNU/Linux
plugin path: /usr/local/bin/../lib/squeak/5.0- [default: /usr/local/lib/squeak/5.0-/]

Reply | Threaded
Open this post in threaded view
|

Re: Unable to compile myself Pharo

Garreau, Alexandre

Le 07/12/2018 à 02h25, Ben Coman a écrit :

On Fri, 7 Dec 2018 at 01:43, Alexandre Garreau <[hidden email]> wrote:

I built the VM and when running the Pharo.image file got with curl by the site, it runs but warns the VM is too old for this image (strangely, since I built the git version),

That warning can occur if you didn't run "scripts/updateSCCSVersions" once on your fresh clone (as described in the repo README, but its a common miss)

I recloned and did it, and it doesn’t seem it did something, as it pretty quickly ended with only that output:

galex-713@portable:~/doc/comp/src/pharo/opensmalltalk-vm$ LCALL=C scripts/updateSCCSVersions No stash found.

Reply | Threaded
Open this post in threaded view
|

Re: Unable to compile myself Pharo

Ben Coman
That sounds normal.  "No stash" is not an error.
You should see new files in directory  ".git/hooks"
which help give correct date to built VM to avoid "to old" message.

btw, make sure you match your 32/64-bitness between VM and Image.

cheers -ben

On Tue, 11 Dec 2018 at 00:51, Alexandre Garreau <[hidden email]> wrote:

Le 07/12/2018 à 02h25, Ben Coman a écrit :

On Fri, 7 Dec 2018 at 01:43, Alexandre Garreau <[hidden email]> wrote:

I built the VM and when running the Pharo.image file got with curl by the site, it runs but warns the VM is too old for this image (strangely, since I built the git version),

That warning can occur if you didn't run "scripts/updateSCCSVersions" once on your fresh clone (as described in the repo README, but its a common miss)

I recloned and did it, and it doesn’t seem it did something, as it pretty quickly ended with only that output:

galex-713@portable:~/doc/comp/src/pharo/opensmalltalk-vm$ LCALL=C scripts/updateSCCSVersions No stash found.

Reply | Threaded
Open this post in threaded view
|

Re: Unable to compile myself Pharo

Garreau, Alexandre
In reply to this post by Ben Coman

Okay, now I ran it some stuff seems to be more okay, but it still segfaults:

Segmentation fault Tue Dec 11 01:09:56 2018

usr/local/lib/squeak/5.0-201812101325/squeak Pharo VM version: 5.0-201812101325 Tue Dec 11 00:52:05 CET 2018 gcc 6.3.0 [Production Spur VM] Built from: CoInterpreter VMMaker.oscog-eem.2488 uuid: 3d088675-fa5c-452e-8063-001ff1d4ab81 Dec 11 2018 With: StackToRegisterMappingCogit VMMaker.oscog-eem.2482 uuid: 7df020b4-6565-4768-9e4a-75bc5464ed95 Dec 11 2018 Revision: VM: 201812101325 [hidden email]:doc/comp/src/pharo/opensmalltalk-vm Date: Mon Dec 10 14:25:06 2018 CommitHash: 14b6d3645 Plugins: 201812101325 [hidden email]:doc/comp/src/pharo/opensmalltalk-vm Build host: Linux portable.galex-713.eu 4.9.0-8-686-pae #1 SMP Debian 4.9.130-2 (2018-10-27) i686 GNU/Linux plugin path: /usr/local/bin../lib/squeak/5.0-201812101325 [default: /usr/local/lib/squeak/5.0-201812101325/]

C stack backtrace & registers: eax 0xbf9683a4 ebx 0xbf9682c0 ecx 0xbf968358 edx 0xbf96830c edi 0xbf968190 esi 0xbf968190 ebp 0xbf968228 esp 0xbf968274 eip 0xbf968488 *[0xbf968488] usr/local/bin../lib/squeak/5.0-201812101325/squeak(+0x1df91)[0x4e1f91] usr/local/bin../lib/squeak/5.0-201812101325/squeak(+0x1fe1e)[0x4e3e1e] linux-gate.so.1(_kernelrtsigreturn+0x0)[0xb7790d10] lib/i386-linux-gnu/libc.so.6(+0x75d91)[0xb74aad91] /lib/i386-linux-gnu/libc.so.6(getenv+0x1c)[0xb7462f5c] /usr/local/bin../lib/squeak/5.0-201812101325/squeak(+0xca537)[0x58e537] usr/local/bin../lib/squeak/5.0-201812101325/squeak(+0x5b39a)[0x51f39a] usr/local/bin../lib/squeak/5.0-201812101325/squeak(+0x5ca8c)[0x520a8c] usr/local/bin../lib/squeak/5.0-201812101325/squeak(ceSendsupertonumArgs+0x2a4)[0x523034] [0x120008d] [0x1201128] [0x243a2f3] [0x4231f0b] [0x422938e] [0x4229344] [0x42293c8] [0x126e725] [0x120888c] [0x1201128] [0x126e4d6] [0x1229639] [0x1201128] [0x122964c] [0x12294f6] [0x121f74b] [0x12059c5] [0x121f6fb] [0x12010f8] usr/local/bin../lib/squeak/5.0-201812101325/squeak(+0x10edc8)[0x5d2dc8]

Smalltalk stack dump: 0xbf9722c0 M UnixEnvironment>getRawEnvironmentVariableViaFFI: 0x150ae30: a(n) UnixEnvironment 0xbf9722f0 I FFICalloutAPI>function:module: 0x150ce10: a(n) FFICalloutAPI 0xbf972318 I UnixEnvironment(Object)>ffiCall:module: 0x150ae30: a(n) UnixEnvironment 0xbf972340 I UnixEnvironment>getRawEnvironmentVariableViaFFI: 0x150ae30: a(n) UnixEnvironment 0xbf972368 I UnixEnvironment>getRawEnvironmentVariable: 0x150ae30: a(n) UnixEnvironment 0xbf97238c I UnixEnvironment>getEnvironmentVariable:withEncoding: 0x150ae30: a(n) UnixEnvironment 0xbf9723b4 I UnixEnvironment>getEnvironmentVariable: 0x150ae30: a(n) UnixEnvironment 0xbf9723d4 M [] in UnixResolver(PlatformResolver)>directoryFromEnvVariableNamed:or: 0x142cff0: a(n) UnixResolver 0xbf9723ec M BlockClosure>on:do: 0x150a978: a(n) BlockClosure 0xbf972418 I UnixResolver(PlatformResolver)>directoryFromEnvVariableNamed:or: 0x142cff0: a(n) UnixResolver 0xbf972438 M UnixResolver>preferences 0x142cff0: a(n) UnixResolver 0xbf972450 M UnixResolver(FileSystemResolver)>resolve: 0x142cff0: a(n) UnixResolver 0xbf972474 I SystemResolver(FileSystemResolver)>unknownOrigin: 0x142cbc0: a(n) SystemResolver 0xbf972490 M SystemResolver(FileSystemResolver)>resolve: 0x142cbc0: a(n) SystemResolver 0xbf9724b0 M InteractiveResolver>unknownOrigin: 0x142cb80: a(n) InteractiveResolver 0xbf9724d0 M [] in InteractiveResolver>resolve: 0x142cb80: a(n) InteractiveResolver 0xbf9724ec M IdentityDictionary(Dictionary)>at:ifAbsent: 0x142cb90: a(n) IdentityDictionary 0xbf97250c M InteractiveResolver>resolve: 0x142cb80: a(n) InteractiveResolver 0xbf96e2d4 M FileLocator>resolve 0x150a7f0: a(n) FileLocator 0xbf96e2f4 I FileLocator>asFileReference 0x150a7f0: a(n) FileLocator 0xbf96e314 I PhLSettingBrowser class>preferencesFile 0x41dd830: a(n) PhLSettingBrowser class 0xbf96e334 I PhLSettingBrowser class>launcherStartUp 0x41dd830: a(n) PhLSettingBrowser class 0xbf96e34c M [] in PhLStartupManager class>startUp 0x41e80c8: a(n) PhLStartupManager class 0xbf96e370 M SortedCollection(OrderedCollection)>do: 0x4205a68: a(n) SortedCollection 0xbf96e394 I PhLStartupManager class>startUp 0x41e80c8: a(n) PhLStartupManager class 0xbf96e3ac M PhLStartupManager class(Behavior)>startUp: 0x41e80c8: a(n) PhLStartupManager class 0xbf96e3c8 M ClassSessionHandler>startup: 0x4205a48: a(n) ClassSessionHandler 0xbf96e3e8 M [] in WorkingSession>runStartup: 0x1392490: a(n) WorkingSession 0xbf96e40c M [] in WorkingSession>runList:do: 0x1392490: a(n) WorkingSession 0xbf96e424 M BlockClosure>on:do: 0x15055a8: a(n) BlockClosure 0xbf96e448 M [] in WorkingSession>runList:do: 0x1392490: a(n) WorkingSession 0xbf96e46c M Array(SequenceableCollection)>do: 0x1392678: a(n) Array 0xbf96e490 I WorkingSession>runList:do: 0x1392490: a(n) WorkingSession 0xbf96e4b8 I WorkingSession>runStartup: 0x1392490: a(n) WorkingSession 0xbf96e4dc I WorkingSession>start: 0x1392490: a(n) WorkingSession 0xbf96e508 I SessionManager>snapshot:andQuit: 0x3308d80: a(n) SessionManager 0x431b818 s [] in SmalltalkImage>snapshot:andQuit: 0x431e848 s CurrentExecutionEnvironment class>activate:for: 0x431f248 s DefaultExecutionEnvironment(ExecutionEnvironment)>beActiveDuring: 0x431ff80 s DefaultExecutionEnvironment class>beActiveDuring: 0x431f2a8 s SmalltalkImage>snapshot:andQuit: 0x431ffe0 s EvaluateCommandLineHandler>activate 0x4321228 s EvaluateCommandLineHandler class(CommandLineHandler class)>activateWith: 0x4322038 s [] in PharoCommandLineHandler(BasicCommandLineHandler)>activateSubCommand: 0x4323290 s BlockClosure>on:do: 0x4323e78 s PharoCommandLineHandler(BasicCommandLineHandler)>activateSubCommand: 0x4325220 s PharoCommandLineHandler(BasicCommandLineHandler)>handleSubcommand 0x43254c0 s PharoCommandLineHandler(BasicCommandLineHandler)>handleArgument: 0x43257a8 s [] in PharoCommandLineHandler(BasicCommandLineHandler)>activate 0x4325ad8 s BlockClosure>on:do: 0x4325e18 s PharoCommandLineHandler(BasicCommandLineHandler)>activate 0x4326200 s PharoCommandLineHandler>activate 0x43265b8 s PharoCommandLineHandler class(CommandLineHandler class)>activateWith: 0x4326b90 s [] in PharoCommandLineHandler class>activateWith: 0x4326e00 s NonInteractiveUIManager(UIManager)>defer: 0x4327160 s PharoCommandLineHandler class>activateWith: 0x43274a0 s [] in BasicCommandLineHandler>activateSubCommand: 0x4327710 s BlockClosure>on:do: 0x4327968 s BasicCommandLineHandler>activateSubCommand: 0x4327d60 s BasicCommandLineHandler>handleSubcommand 0x4328060 s BasicCommandLineHandler>handleArgument: 0x4328200 s [] in BasicCommandLineHandler>activate 0x4328468 s BlockClosure>on:do: 0x4328b68 s BasicCommandLineHandler>activate 0x4328dc0 s [] in BasicCommandLineHandler class>startUp: 0x4328e20 s BlockClosure>cull: 0x4328e80 s WorkingSession>executeDeferredStartupActions: 0x4261f60 s WorkingSession>runStartup: 0x4314430 s WorkingSession>start: 0x4250f28 s SessionManager>snapshot:andQuit: 0x4253318 s [] in SmalltalkImage>snapshot:andQuit: 0x4257f68 s CurrentExecutionEnvironment class>activate:for: 0x4259de8 s DefaultExecutionEnvironment(ExecutionEnvironment)>beActiveDuring: 0x425b3a0 s DefaultExecutionEnvironment class>beActiveDuring: 0x4259e48 s SmalltalkImage>snapshot:andQuit: 0x425b400 s EvaluateCommandLineHandler>activate 0x425c008 s EvaluateCommandLineHandler class(CommandLineHandler class)>activateWith: 0x425c378 s [] in PharoCommandLineHandler(BasicCommandLineHandler)>activateSubCommand: 0x425c818 s BlockClosure>on:do: 0x425ccd8 s PharoCommandLineHandler(BasicCommandLineHandler)>activateSubCommand: 0x425df88 s PharoCommandLineHandler(BasicCommandLineHandler)>handleSubcommand 0x425e260 s PharoCommandLineHandler(BasicCommandLineHandler)>handleArgument: 0x425e6d8 s [] in PharoCommandLineHandler(BasicCommandLineHandler)>activate 0x425eb18 s BlockClosure>on:do: 0x425eff0 s PharoCommandLineHandler(BasicCommandLineHandler)>activate 0x425f608 s PharoCommandLineHandler>activate 0x425f968 s PharoCommandLineHandler class(CommandLineHandler class)>activateWith: 0x425f9c8 s [] in PharoCommandLineHandler class>activateWith: 0x425fa28 s NonInteractiveUIManager(UIManager)>defer: 0x425faa0 s PharoCommandLineHandler class>activateWith: 0x425fb00 s [] in BasicCommandLineHandler>activateSubCommand: 0x425fb60 s BlockClosure>on:do: 0x425fbf0 s BasicCommandLineHandler>activateSubCommand: 0x425fca8 s BasicCommandLineHandler>handleSubcommand 0x425fd28 s BasicCommandLineHandler>handleArgument: 0x425fdc0 s [] in BasicCommandLineHandler>activate 0x425ff20 s BlockClosure>on:do: 0x42600f8 s BasicCommandLineHandler>activate 0x4260290 s [] in BasicCommandLineHandler class>startUp: 0x42602f0 s BlockClosure>cull: 0x4260350 s WorkingSession>executeDeferredStartupActions: 0x4250108 s WorkingSession>runStartup: 0x4251b00 s WorkingSession>start: 0x424cde8 s SessionManager>snapshot:andQuit: 0x424ced8 s [] in SmalltalkImage>snapshot:andQuit: 0x424d478 s CurrentExecutionEnvironment class>activate:for: 0x424d518 s DefaultExecutionEnvironment(ExecutionEnvironment)>beActiveDuring: 0x424d5d8 s DefaultExecutionEnvironment class>beActiveDuring: 0x424d578 s SmalltalkImage>snapshot:andQuit: 0x424d638 s EvaluateCommandLineHandler>activate 0x424d698 s EvaluateCommandLineHandler class(CommandLineHandler class)>activateWith: 0x424d718 s [] in PharoCommandLineHandler(BasicCommandLineHandler)>activateSubCommand: 0x424d7d8 s BlockClosure>on:do: 0x424d928 s PharoCommandLineHandler(BasicCommandLineHandler)>activateSubCommand: 0x424ea68 s PharoCommandLineHandler(BasicCommandLineHandler)>handleSubcommand 0x424ec10 s PharoCommandLineHandler(BasicCommandLineHandler)>handleArgument: 0x424ee08 s [] in PharoCommandLineHandler(BasicCommandLineHandler)>activate 0x424f088 s BlockClosure>on:do: 0x424f260 s PharoCommandLineHandler(BasicCommandLineHandler)>activate 0x424f3f8 s PharoCommandLineHandler>activate 0x424f458 s PharoCommandLineHandler class(CommandLineHandler class)>activateWith: 0x424f4b8 s [] in PharoCommandLineHandler class>activateWith: 0x424f518 s NonInteractiveUIManager(UIManager)>defer: 0x424f590 s PharoCommandLineHandler class>activateWith: 0x424f5f0 s [] in BasicCommandLineHandler>activateSubCommand: 0x424f650 s BlockClosure>on:do: 0x424f6e0 s BasicCommandLineHandler>activateSubCommand: 0x424f798 s BasicCommandLineHandler>handleSubcommand 0x424f818 s BasicCommandLineHandler>handleArgument: 0x424f8b0 s [] in BasicCommandLineHandler>activate 0x424fa10 s BlockClosure>on:do: 0x424fbe8 s BasicCommandLineHandler>activate 0x424fd80 s [] in BasicCommandLineHandler class>startUp: 0x424fde0 s BlockClosure>cull: 0x424fe40 s WorkingSession>executeDeferredStartupActions: 0x424cd68 s WorkingSession>runStartup: 0x424ce68 s WorkingSession>start: 0x4229710 s SessionManager>snapshot:andQuit: 0x422dfb0 s [] in SmalltalkImage>snapshot:andQuit: 0x4232730 s CurrentExecutionEnvironment class>activate:for: 0x423ebe8 s DefaultExecutionEnvironment(ExecutionEnvironment)>beActiveDuring: 0x42412b8 s DefaultExecutionEnvironment class>beActiveDuring: 0x423ec48 s SmalltalkImage>snapshot:andQuit: 0x3b5dc70 s ConfigurationCommandLineHandler>installVersion: 0x3b5dd70 s ConfigurationCommandLineHandler>installConfiguration 0x3b5de48 s ConfigurationCommandLineHandler>activate 0x3b5df10 s ConfigurationCommandLineHandler class(CommandLineHandler class)>activateWith: 0x3b5e0e0 s [] in PharoCommandLineHandler(BasicCommandLineHandler)>activateSubCommand: 0x3b5e2b0 s BlockClosure>on:do: 0x3b5e478 s PharoCommandLineHandler(BasicCommandLineHandler)>activateSubCommand: 0x3b5e550 s PharoCommandLineHandler(BasicCommandLineHandler)>handleSubcommand 0x3b5e5e0 s PharoCommandLineHandler(BasicCommandLineHandler)>handleArgument: 0x3b5e678 s [] in PharoCommandLineHandler(BasicCommandLineHandler)>activate 0x3b5e7d8 s BlockClosure>on:do: 0x3b5e9b0 s PharoCommandLineHandler(BasicCommandLineHandler)>activate 0x3b5eb48 s PharoCommandLineHandler>activate 0x3b5eba8 s PharoCommandLineHandler class(CommandLineHandler class)>activateWith: 0x3b5ec08 s [] in PharoCommandLineHandler class>activateWith: 0x3b5ec68 s NonInteractiveUIManager(UIManager)>defer: 0x3b60898 s PharoCommandLineHandler class>activateWith: 0x3b623b8 s [] in BasicCommandLineHandler>activateSubCommand: 0x3b66ad0 s BlockClosure>on:do: 0x3b71d10 s BasicCommandLineHandler>activateSubCommand: 0x3b74a78 s BasicCommandLineHandler>handleSubcommand 0x3b75cb8 s BasicCommandLineHandler>handleArgument: 0x3b75d50 s [] in BasicCommandLineHandler>activate 0x3b75eb0 s BlockClosure>on:do: 0x3b76088 s BasicCommandLineHandler>activate 0x3b76220 s [] in BasicCommandLineHandler class>startUp: 0x3b76280 s BlockClosure>cull: 0x3b762f8 s WorkingSession>executeDeferredStartupActions: 0x3b763b8 s WorkingSession>runStartup: 0x3b76418 s WorkingSession>start: 0x3b11bc8 s SessionManager>snapshot:andQuit: 0x3b13f98 s [] in SmalltalkImage>snapshot:andQuit: 0x3b141e0 s CurrentExecutionEnvironment class>activate:for: 0x3b142f8 s DefaultExecutionEnvironment(ExecutionEnvironment)>beActiveDuring: 0x3b14438 s DefaultExecutionEnvironment class>beActiveDuring: 0x3b14358 s SmalltalkImage>snapshot:andQuit: 0x3b14498 s SmalltalkImage>saveImageInFileNamed: 0x3b14520 s SmalltalkImage>saveAs: 0x3b145d0 s SaveCommandLineHandler>saveImage 0x3b14668 s SaveCommandLineHandler>activate 0x3b14770 s SaveCommandLineHandler class(CommandLineHandler class)>activateWith: 0x3b14860 s [] in PharoCommandLineHandler(BasicCommandLineHandler)>activateSubCommand: 0x3b149d8 s BlockClosure>on:do: 0x3b14ab0 s PharoCommandLineHandler(BasicCommandLineHandler)>activateSubCommand: 0x3b14c68 s PharoCommandLineHandler(BasicCommandLineHandler)>handleSubcommand 0x3b14e58 s PharoCommandLineHandler(BasicCommandLineHandler)>handleArgument: 0x3b15010 s [] in PharoCommandLineHandler(BasicCommandLineHandler)>activate 0x3b15170 s BlockClosure>on:do: 0x3b151e8 s PharoCommandLineHandler(BasicCommandLineHandler)>activate 0x3b15260 s PharoCommandLineHandler>activate 0x3b152c0 s PharoCommandLineHandler class(CommandLineHandler class)>activateWith: 0x3b15320 s [] in PharoCommandLineHandler class>activateWith: 0x3b15380 s NonInteractiveUIManager(UIManager)>defer: 0x3b153f8 s PharoCommandLineHandler class>activateWith: 0x3b15468 s [] in BasicCommandLineHandler>activateSubCommand: 0x3b154c8 s BlockClosure>on:do: 0x3b15558 s BasicCommandLineHandler>activateSubCommand: 0x3b15610 s BasicCommandLineHandler>handleSubcommand 0x3b15690 s BasicCommandLineHandler>handleArgument: 0x3b15728 s [] in BasicCommandLineHandler>activate 0x3b15888 s BlockClosure>on:do: 0x3b15900 s BasicCommandLineHandler>activate 0x3b15978 s [] in BasicCommandLineHandler class>startUp: 0x3b159d8 s BlockClosure>cull: 0x3b15a50 s WorkingSession>executeDeferredStartupActions: 0x3b15b10 s WorkingSession>runStartup: 0x3b15b70 s WorkingSession>start: 0x3a33370 s SessionManager>snapshot:andQuit: 0x3a33ec0 s [] in SmalltalkImage>snapshot:andQuit: 0x3a343c8 s CurrentExecutionEnvironment class>activate:for: 0x3a34788 s DefaultExecutionEnvironment(ExecutionEnvironment)>beActiveDuring: 0x3a34aa0 s DefaultExecutionEnvironment class>beActiveDuring: 0x3a347e8 s SmalltalkImage>snapshot:andQuit: 0x3a34b00 s ImageCleanerCommandLineHandler>activate 0x3a34e38 s ImageCleanerCommandLineHandler class(CommandLineHandler class)>activateWith: 0x3a35018 s [] in PharoCommandLineHandler(BasicCommandLineHandler)>activateSubCommand: 0x359d158 s BlockClosure>on:do: 0x359d1d0 s PharoCommandLineHandler(BasicCommandLineHandler)>activateSubCommand: 0x359ceb8 s PharoCommandLineHandler(BasicCommandLineHandler)>handleSubcommand 0x3a33410 s PharoCommandLineHandler(BasicCommandLineHandler)>handleArgument: 0x359cf18 s [] in PharoCommandLineHandler(BasicCommandLineHandler)>activate 0x359cf90 s BlockClosure>on:do: 0x359d008 s PharoCommandLineHandler(BasicCommandLineHandler)>activate 0x3a33470 s PharoCommandLineHandler>activate 0x3a33f30 s PharoCommandLineHandler class(CommandLineHandler class)>activateWith: 0x3a34448 s [] in PharoCommandLineHandler class>activateWith: 0x3a34848 s NonInteractiveUIManager(UIManager)>defer: 0x356cbb8 s PharoCommandLineHandler class>activateWith: 0x3a334d0 s [] in BasicCommandLineHandler>activateSubCommand: 0x359d068 s BlockClosure>on:do: 0x356cc60 s BasicCommandLineHandler>activateSubCommand: 0x356ccd8 s BasicCommandLineHandler>handleSubcommand 0x3a33530 s BasicCommandLineHandler>handleArgument: 0x356cd48 s [] in BasicCommandLineHandler>activate 0x359d0c8 s BlockClosure>on:do: 0x356cdd8 s BasicCommandLineHandler>activate 0x3a33590 s [] in BasicCommandLineHandler class>startUp: 0x3a33f90 s BlockClosure>cull: 0x3a344a8 s WorkingSession>executeDeferredStartupActions: 0x356ce50 s WorkingSession>runStartup: 0x3a335f0 s WorkingSession>start: 0x35630c8 s SessionManager>snapshot:andQuit: 0x3565fa8 s [] in SmalltalkImage>snapshot:andQuit: 0x356bc90 s CurrentExecutionEnvironment class>activate:for: 0x356c118 s DefaultExecutionEnvironment(ExecutionEnvironment)>beActiveDuring: 0x356c500 s DefaultExecutionEnvironment class>beActiveDuring: 0x356c178 s SmalltalkImage>snapshot:andQuit: 0x3559e70 s LoadUpdatesCommandLineHandler>activate 0x3559ed0 s LoadUpdatesCommandLineHandler class(CommandLineHandler class)>activateWith: 0x355a090 s [] in PharoCommandLineHandler(BasicCommandLineHandler)>activateSubCommand: 0x355a210 s BlockClosure>on:do: 0x355a288 s PharoCommandLineHandler(BasicCommandLineHandler)>activateSubCommand: 0x355a300 s PharoCommandLineHandler(BasicCommandLineHandler)>handleSubcommand 0x355a360 s PharoCommandLineHandler(BasicCommandLineHandler)>handleArgument: 0x355a3d8 s [] in PharoCommandLineHandler(BasicCommandLineHandler)>activate 0x355a468 s BlockClosure>on:do: 0x355a4e0 s PharoCommandLineHandler(BasicCommandLineHandler)>activate 0x355a558 s PharoCommandLineHandler>activate 0x3559968 s PharoCommandLineHandler class(CommandLineHandler class)>activateWith: 0x35599c8 s [] in PharoCommandLineHandler class>activateWith: 0x3559a28 s NonInteractiveUIManager(UIManager)>defer: 0x35594a0 s PharoCommandLineHandler class>activateWith: 0x3559a88 s [] in BasicCommandLineHandler>activateSubCommand: 0x3559c68 s BlockClosure>on:do: 0x3559548 s BasicCommandLineHandler>activateSubCommand: 0x35595c0 s BasicCommandLineHandler>handleSubcommand 0x3559ae8 s BasicCommandLineHandler>handleArgument: 0x3559620 s [] in BasicCommandLineHandler>activate 0x3559b48 s BlockClosure>on:do: 0x35596b0 s BasicCommandLineHandler>activate 0x3559ba8 s [] in BasicCommandLineHandler class>startUp: 0x3559cc8 s BlockClosure>cull: 0x3559d28 s WorkingSession>executeDeferredStartupActions: 0x3559728 s WorkingSession>runStartup: 0x3559c08 s WorkingSession>start: 0x3556f68 s SessionManager>snapshot:andQuit: 0x3557208 s [] in SmalltalkImage>snapshot:andQuit: 0x3557328 s CurrentExecutionEnvironment class>activate:for: 0x3557468 s DefaultExecutionEnvironment(ExecutionEnvironment)>beActiveDuring: 0x3557588 s DefaultExecutionEnvironment class>beActiveDuring: 0x35574c8 s SmalltalkImage>snapshot:andQuit: 0x35575e8 s ImageCleanerCommandLineHandler>activate 0x3557648 s ImageCleanerCommandLineHandler class(CommandLineHandler class)>activateWith: 0x35576a8 s [] in PharoCommandLineHandler(BasicCommandLineHandler)>activateSubCommand: 0x3556af8 s BlockClosure>on:do: 0x3556b70 s PharoCommandLineHandler(BasicCommandLineHandler)>activateSubCommand: 0x3556858 s PharoCommandLineHandler(BasicCommandLineHandler)>handleSubcommand 0x3556fc8 s PharoCommandLineHandler(BasicCommandLineHandler)>handleArgument: 0x35568b8 s [] in PharoCommandLineHandler(BasicCommandLineHandler)>activate 0x3556930 s BlockClosure>on:do: 0x35569a8 s PharoCommandLineHandler(BasicCommandLineHandler)>activate 0x3557028 s PharoCommandLineHandler>activate 0x3557268 s PharoCommandLineHandler class(CommandLineHandler class)>activateWith: 0x35573a8 s [] in PharoCommandLineHandler class>activateWith: 0x3557528 s NonInteractiveUIManager(UIManager)>defer: 0x3554c98 s PharoCommandLineHandler class>activateWith: 0x3557088 s [] in BasicCommandLineHandler>activateSubCommand: 0x3556a08 s BlockClosure>on:do: 0x3554d40 s BasicCommandLineHandler>activateSubCommand: 0x3554db8 s BasicCommandLineHandler>handleSubcommand 0x35570e8 s BasicCommandLineHandler>handleArgument: 0x3554e28 s [] in BasicCommandLineHandler>activate 0x3556a68 s BlockClosure>on:do: 0x3554eb8 s BasicCommandLineHandler>activate 0x3557148 s [] in BasicCommandLineHandler class>startUp: 0x35572c8 s BlockClosure>cull: 0x3557408 s WorkingSession>executeDeferredStartupActions: 0x3554f30 s WorkingSession>runStartup: 0x35571a8 s WorkingSession>start: 0x35543e0 s SessionManager>snapshot:andQuit: 0x3554440 s [] in SmalltalkImage>snapshot:andQuit: 0x35544a0 s CurrentExecutionEnvironment class>activate:for: 0x3554520 s DefaultExecutionEnvironment(ExecutionEnvironment)>beActiveDuring: 0x35545e0 s DefaultExecutionEnvironment class>beActiveDuring: 0x3554580 s SmalltalkImage>snapshot:andQuit: 0x3550bd8 s LoadUpdatesCommandLineHandler>activate 0x3550c38 s LoadUpdatesCommandLineHandler class(CommandLineHandler class)>activateWith: 0x3550df8 s [] in PharoCommandLineHandler(BasicCommandLineHandler)>activateSubCommand: 0x3550f78 s BlockClosure>on:do: 0x3550ff0 s PharoCommandLineHandler(BasicCommandLineHandler)>activateSubCommand: 0x3551068 s PharoCommandLineHandler(BasicCommandLineHandler)>handleSubcommand 0x35510c8 s PharoCommandLineHandler(BasicCommandLineHandler)>handleArgument: 0x3551140 s [] in PharoCommandLineHandler(BasicCommandLineHandler)>activate 0x35511d0 s BlockClosure>on:do: 0x3551248 s PharoCommandLineHandler(BasicCommandLineHandler)>activate 0x35512c0 s PharoCommandLineHandler>activate 0x3551320 s PharoCommandLineHandler class(CommandLineHandler class)>activateWith: 0x3551380 s [] in PharoCommandLineHandler class>activateWith: 0x35513e0 s NonInteractiveUIManager(UIManager)>defer: 0x3550640 s PharoCommandLineHandler class>activateWith: 0x3551440 s [] in BasicCommandLineHandler>activateSubCommand: 0x3551620 s BlockClosure>on:do: 0x35506e8 s BasicCommandLineHandler>activateSubCommand: 0x3550760 s BasicCommandLineHandler>handleSubcommand 0x35514a0 s BasicCommandLineHandler>handleArgument: 0x35507c0 s [] in BasicCommandLineHandler>activate 0x3551500 s BlockClosure>on:do: 0x3550850 s BasicCommandLineHandler>activate 0x3551560 s [] in BasicCommandLineHandler class>startUp: 0x3551680 s BlockClosure>cull: 0x35516e0 s WorkingSession>executeDeferredStartupActions: 0x35508c8 s WorkingSession>runStartup: 0x35515c0 s WorkingSession>start: 0x354e128 s SessionManager>snapshot:andQuit: 0x354e3c8 s [] in SmalltalkImage>snapshot:andQuit: 0x354e4e8 s CurrentExecutionEnvironment class>activate:for: 0x354e628 s DefaultExecutionEnvironment(ExecutionEnvironment)>beActiveDuring: 0x354e748 s DefaultExecutionEnvironment class>beActiveDuring: 0x354e688 s SmalltalkImage>snapshot:andQuit: 0x354e7a8 s ImageCleanerCommandLineHandler>activate 0x354e808 s ImageCleanerCommandLineHandler class(CommandLineHandler class)>activateWith: 0x354e868 s [] in PharoCommandLineHandler(BasicCommandLineHandler)>activateSubCommand: 0x354dc20 s BlockClosure>on:do: 0x354dc98 s PharoCommandLineHandler(BasicCommandLineHandler)>activateSubCommand: 0x354d980 s PharoCommandLineHandler(BasicCommandLineHandler)>handleSubcommand 0x354e188 s PharoCommandLineHandler(BasicCommandLineHandler)>handleArgument: 0x354d9e0 s [] in PharoCommandLineHandler(BasicCommandLineHandler)>activate 0x354da58 s BlockClosure>on:do: 0x354dad0 s PharoCommandLineHandler(BasicCommandLineHandler)>activate 0x354e1e8 s PharoCommandLineHandler>activate 0x354e428 s PharoCommandLineHandler class(CommandLineHandler class)>activateWith: 0x354e568 s [] in PharoCommandLineHandler class>activateWith: 0x354e6e8 s NonInteractiveUIManager(UIManager)>defer: 0x354bda8 s PharoCommandLineHandler class>activateWith: 0x354e248 s [] in BasicCommandLineHandler>activateSubCommand: 0x354db30 s BlockClosure>on:do: 0x354be50 s BasicCommandLineHandler>activateSubCommand: 0x354bec8 s BasicCommandLineHandler>handleSubcommand 0x354e2a8 s BasicCommandLineHandler>handleArgument: 0x354bf38 s [] in BasicCommandLineHandler>activate 0x354db90 s BlockClosure>on:do: 0x354bfc8 s BasicCommandLineHandler>activate 0x354e308 s [] in BasicCommandLineHandler class>startUp: 0x354e488 s BlockClosure>cull: 0x354e5c8 s WorkingSession>executeDeferredStartupActions: 0x354c040 s WorkingSession>runStartup: 0x354e368 s WorkingSession>start: 0x354b4f0 s SessionManager>snapshot:andQuit: 0x354b550 s [] in SmalltalkImage>snapshot:andQuit: 0x354b5b0 s CurrentExecutionEnvironment class>activate:for: 0x354b630 s DefaultExecutionEnvironment(ExecutionEnvironment)>beActiveDuring: 0x354b6f0 s DefaultExecutionEnvironment class>beActiveDuring: 0x354b690 s SmalltalkImage>snapshot:andQuit: 0x3548ad0 s LoadUpdatesCommandLineHandler>activate 0x3548b30 s LoadUpdatesCommandLineHandler class(CommandLineHandler class)>activateWith: 0x3548cf0 s [] in PharoCommandLineHandler(BasicCommandLineHandler)>activateSubCommand: 0x3548e70 s BlockClosure>on:do: 0x3548ee8 s PharoCommandLineHandler(BasicCommandLineHandler)>activateSubCommand: 0x3548f60 s PharoCommandLineHandler(BasicCommandLineHandler)>handleSubcommand 0x3548fc0 s PharoCommandLineHandler(BasicCommandLineHandler)>handleArgument: 0x3549038 s [] in PharoCommandLineHandler(BasicCommandLineHandler)>activate 0x35490c8 s BlockClosure>on:do: 0x3549140 s PharoCommandLineHandler(BasicCommandLineHandler)>activate 0x35491b8 s PharoCommandLineHandler>activate 0x3549218 s PharoCommandLineHandler class(CommandLineHandler class)>activateWith: 0x3549278 s [] in PharoCommandLineHandler class>activateWith: 0x35492d8 s NonInteractiveUIManager(UIManager)>defer: 0x3548538 s PharoCommandLineHandler class>activateWith: 0x3549338 s [] in BasicCommandLineHandler>activateSubCommand: 0x3549518 s BlockClosure>on:do: 0x35485e0 s BasicCommandLineHandler>activateSubCommand: 0x3548658 s BasicCommandLineHandler>handleSubcommand 0x3549398 s BasicCommandLineHandler>handleArgument: 0x35486b8 s [] in BasicCommandLineHandler>activate 0x35493f8 s BlockClosure>on:do: 0x3548748 s BasicCommandLineHandler>activate 0x3549458 s [] in BasicCommandLineHandler class>startUp: 0x3549578 s BlockClosure>cull: 0x35495d8 s WorkingSession>executeDeferredStartupActions: 0x35487c0 s WorkingSession>runStartup: 0x35494b8 s WorkingSession>start: 0x3546020 s SessionManager>snapshot:andQuit: 0x35462c0 s [] in SmalltalkImage>snapshot:andQuit: 0x35463e0 s CurrentExecutionEnvironment class>activate:for: 0x3546520 s DefaultExecutionEnvironment(ExecutionEnvironment)>beActiveDuring: 0x3546640 s DefaultExecutionEnvironment class>beActiveDuring: 0x3546580 s SmalltalkImage>snapshot:andQuit: 0x35466a0 s ImageCleanerCommandLineHandler>activate 0x3546700 s ImageCleanerCommandLineHandler class(CommandLineHandler class)>activateWith: 0x3546760 s [] in PharoCommandLineHandler(BasicCommandLineHandler)>activateSubCommand: 0x3545bc8 s BlockClosure>on:do: 0x3545c40 s PharoCommandLineHandler(BasicCommandLineHandler)>activateSubCommand: 0x3545928 s PharoCommandLineHandler(BasicCommandLineHandler)>handleSubcommand 0x3546080 s PharoCommandLineHandler(BasicCommandLineHandler)>handleArgument: 0x3545988 s [] in PharoCommandLineHandler(BasicCommandLineHandler)>activate 0x3545a00 s BlockClosure>on:do: 0x3545a78 s PharoCommandLineHandler(BasicCommandLineHandler)>activate 0x35460e0 s PharoCommandLineHandler>activate 0x3546320 s PharoCommandLineHandler class(CommandLineHandler class)>activateWith: 0x3546460 s [] in PharoCommandLineHandler class>activateWith: 0x35465e0 s NonInteractiveUIManager(UIManager)>defer: 0x3543d50 s PharoCommandLineHandler class>activateWith: 0x3546140 s [] in BasicCommandLineHandler>activateSubCommand: 0x3545ad8 s BlockClosure>on:do: 0x3543df8 s BasicCommandLineHandler>activateSubCommand: 0x3543e70 s BasicCommandLineHandler>handleSubcommand 0x35461a0 s BasicCommandLineHandler>handleArgument: 0x3543ee0 s [] in BasicCommandLineHandler>activate 0x3545b38 s BlockClosure>on:do: 0x3543f70 s BasicCommandLineHandler>activate 0x3546200 s [] in BasicCommandLineHandler class>startUp: 0x3546380 s BlockClosure>cull: 0x35464c0 s WorkingSession>executeDeferredStartupActions: 0x3543fe8 s WorkingSession>runStartup: 0x3546260 s WorkingSession>start: 0x3543498 s SessionManager>snapshot:andQuit: 0x35434f8 s [] in SmalltalkImage>snapshot:andQuit: 0x3543558 s CurrentExecutionEnvironment class>activate:for: 0x35435d8 s DefaultExecutionEnvironment(ExecutionEnvironment)>beActiveDuring: 0x3543698 s DefaultExecutionEnvironment class>beActiveDuring: 0x3543638 s SmalltalkImage>snapshot:andQuit: 0x3542570 s LoadUpdatesCommandLineHandler>activate 0x35425d0 s LoadUpdatesCommandLineHandler class(CommandLineHandler class)>activateWith: 0x3542790 s [] in PharoCommandLineHandler(BasicCommandLineHandler)>activateSubCommand: 0x3542910 s BlockClosure>on:do: 0x3542988 s PharoCommandLineHandler(BasicCommandLineHandler)>activateSubCommand: 0x3542a00 s PharoCommandLineHandler(BasicCommandLineHandler)>handleSubcommand 0x3542a60 s PharoCommandLineHandler(BasicCommandLineHandler)>handleArgument: 0x3542ad8 s [] in PharoCommandLineHandler(BasicCommandLineHandler)>activate 0x3542b68 s BlockClosure>on:do: 0x3542be0 s PharoCommandLineHandler(BasicCommandLineHandler)>activate 0x3542c58 s PharoCommandLineHandler>activate 0x3542cb8 s PharoCommandLineHandler class(CommandLineHandler class)>activateWith: 0x3542d18 s [] in PharoCommandLineHandler class>activateWith: 0x3542d78 s NonInteractiveUIManager(UIManager)>defer: 0x3541fd8 s PharoCommandLineHandler class>activateWith: 0x3542dd8 s [] in BasicCommandLineHandler>activateSubCommand: 0x3542fb8 s BlockClosure>on:do: 0x3542080 s BasicCommandLineHandler>activateSubCommand: 0x35420f8 s BasicCommandLineHandler>handleSubcommand 0x3542e38 s BasicCommandLineHandler>handleArgument: 0x3542158 s [] in BasicCommandLineHandler>activate 0x3542e98 s BlockClosure>on:do: 0x35421e8 s BasicCommandLineHandler>activate 0x3542ef8 s [] in BasicCommandLineHandler class>startUp: 0x3543018 s BlockClosure>cull: 0x3543078 s WorkingSession>executeDeferredStartupActions: 0x3542260 s WorkingSession>runStartup: 0x3542f58 s WorkingSession>start: 0x353fac0 s SessionManager>snapshot:andQuit: 0x353fd60 s [] in SmalltalkImage>snapshot:andQuit: 0x353fe80 s CurrentExecutionEnvironment class>activate:for: 0x353ffc0 s DefaultExecutionEnvironment(ExecutionEnvironment)>beActiveDuring: 0x35400e0 s DefaultExecutionEnvironment class>beActiveDuring: 0x3540020 s SmalltalkImage>snapshot:andQuit: 0x3540140 s ImageCleanerCommandLineHandler>activate 0x35401a0 s ImageCleanerCommandLineHandler class(CommandLineHandler class)>activateWith: 0x3540200 s [] in PharoCommandLineHandler(BasicCommandLineHandler)>activateSubCommand: 0x353f668 s BlockClosure>on:do: 0x353f6e0 s PharoCommandLineHandler(BasicCommandLineHandler)>activateSubCommand: 0x353f3c8 s PharoCommandLineHandler(BasicCommandLineHandler)>handleSubcommand 0x353fb20 s PharoCommandLineHandler(BasicCommandLineHandler)>handleArgument: 0x353f428 s [] in PharoCommandLineHandler(BasicCommandLineHandler)>activate 0x353f4a0 s BlockClosure>on:do: 0x353f518 s PharoCommandLineHandler(BasicCommandLineHandler)>activate 0x353fb80 s PharoCommandLineHandler>activate 0x353fdc0 s PharoCommandLineHandler class(CommandLineHandler class)>activateWith: 0x353ff00 s [] in PharoCommandLineHandler class>activateWith: 0x3540080 s NonInteractiveUIManager(UIManager)>defer: 0x353d808 s PharoCommandLineHandler class>activateWith: 0x353fbe0 s [] in BasicCommandLineHandler>activateSubCommand: 0x353f578 s BlockClosure>on:do: 0x353d8b0 s BasicCommandLineHandler>activateSubCommand: 0x353d928 s BasicCommandLineHandler>handleSubcommand 0x353fc40 s BasicCommandLineHandler>handleArgument: 0x353d998 s [] in BasicCommandLineHandler>activate 0x353f5d8 s BlockClosure>on:do: 0x353da28 s BasicCommandLineHandler>activate 0x353fca0 s [] in BasicCommandLineHandler class>startUp: 0x353fe20 s BlockClosure>cull: 0x353ff60 s WorkingSession>executeDeferredStartupActions: 0x353daa0 s WorkingSession>runStartup: 0x353fd00 s WorkingSession>start: 0x353cf38 s SessionManager>snapshot:andQuit: 0x353cf98 s [] in SmalltalkImage>snapshot:andQuit: 0x353cff8 s CurrentExecutionEnvironment class>activate:for: 0x353d078 s DefaultExecutionEnvironment(ExecutionEnvironment)>beActiveDuring: 0x353d138 s DefaultExecutionEnvironment class>beActiveDuring: 0x353d0d8 s SmalltalkImage>snapshot:andQuit: 0x353baf8 s LoadUpdatesCommandLineHandler>activate 0x353bb58 s LoadUpdatesCommandLineHandler class(CommandLineHandler class)>activateWith: 0x353bd18 s [] in PharoCommandLineHandler(BasicCommandLineHandler)>activateSubCommand: 0x353be98 s BlockClosure>on:do: 0x353bf10 s PharoCommandLineHandler(BasicCommandLineHandler)>activateSubCommand: 0x353bf88 s PharoCommandLineHandler(BasicCommandLineHandler)>handleSubcommand 0x353bfe8 s PharoCommandLineHandler(BasicCommandLineHandler)>handleArgument: 0x353c060 s [] in PharoCommandLineHandler(BasicCommandLineHandler)>activate 0x353c0f0 s BlockClosure>on:do: 0x353c168 s PharoCommandLineHandler(BasicCommandLineHandler)>activate 0x353c1e0 s PharoCommandLineHandler>activate 0x353c240 s PharoCommandLineHandler class(CommandLineHandler class)>activateWith: 0x353c2a0 s [] in PharoCommandLineHandler class>activateWith: 0x353c300 s NonInteractiveUIManager(UIManager)>defer: 0x353b560 s PharoCommandLineHandler class>activateWith: 0x353c360 s [] in BasicCommandLineHandler>activateSubCommand: 0x353c540 s BlockClosure>on:do: 0x353b608 s BasicCommandLineHandler>activateSubCommand: 0x353b680 s BasicCommandLineHandler>handleSubcommand 0x353c3c0 s BasicCommandLineHandler>handleArgument: 0x353b6e0 s [] in BasicCommandLineHandler>activate 0x353c420 s BlockClosure>on:do: 0x353b770 s BasicCommandLineHandler>activate 0x353c480 s [] in BasicCommandLineHandler class>startUp: 0x353c5a0 s BlockClosure>cull: 0x353c600 s WorkingSession>executeDeferredStartupActions: 0x353b7e8 s WorkingSession>runStartup: 0x353c4e0 s WorkingSession>start: 0x3539048 s SessionManager>snapshot:andQuit: 0x35392e8 s [] in SmalltalkImage>snapshot:andQuit: 0x3539408 s CurrentExecutionEnvironment class>activate:for: 0x3539548 s DefaultExecutionEnvironment(ExecutionEnvironment)>beActiveDuring: 0x3539668 s DefaultExecutionEnvironment class>beActiveDuring: 0x35395a8 s SmalltalkImage>snapshot:andQuit: 0x35396c8 s ImageCleanerCommandLineHandler>activate 0x3539728 s ImageCleanerCommandLineHandler class(CommandLineHandler class)>activateWith: 0x3539788 s [] in PharoCommandLineHandler(BasicCommandLineHandler)>activateSubCommand: 0x3538bd8 s BlockClosure>on:do: 0x3538c50 s PharoCommandLineHandler(BasicCommandLineHandler)>activateSubCommand: 0x3538938 s PharoCommandLineHandler(BasicCommandLineHandler)>handleSubcommand 0x35390a8 s PharoCommandLineHandler(BasicCommandLineHandler)>handleArgument: 0x3538998 s [] in PharoCommandLineHandler(BasicCommandLineHandler)>activate 0x3538a10 s BlockClosure>on:do: 0x3538a88 s PharoCommandLineHandler(BasicCommandLineHandler)>activate 0x3539108 s PharoCommandLineHandler>activate 0x3539348 s PharoCommandLineHandler class(CommandLineHandler class)>activateWith: 0x3539488 s [] in PharoCommandLineHandler class>activateWith: 0x3539608 s NonInteractiveUIManager(UIManager)>defer: 0x3536d78 s PharoCommandLineHandler class>activateWith: 0x3539168 s [] in BasicCommandLineHandler>activateSubCommand: 0x3538ae8 s BlockClosure>on:do: 0x3536e20 s BasicCommandLineHandler>activateSubCommand: 0x3536e98 s BasicCommandLineHandler>handleSubcommand 0x35391c8 s BasicCommandLineHandler>handleArgument: 0x3536f08 s [] in BasicCommandLineHandler>activate 0x3538b48 s BlockClosure>on:do: 0x3536f98 s BasicCommandLineHandler>activate 0x3539228 s [] in BasicCommandLineHandler class>startUp: 0x35393a8 s BlockClosure>cull: 0x35394e8 s WorkingSession>executeDeferredStartupActions: 0x3537010 s WorkingSession>runStartup: 0x3539288 s WorkingSession>start: 0x35364c0 s SessionManager>snapshot:andQuit: 0x3536520 s [] in SmalltalkImage>snapshot:andQuit: 0x3536580 s CurrentExecutionEnvironment class>activate:for: 0x3536600 s DefaultExecutionEnvironment(ExecutionEnvironment)>beActiveDuring: 0x35366c0 s DefaultExecutionEnvironment class>beActiveDuring: 0x3536660 s SmalltalkImage>snapshot:andQuit: 0x3534d40 s LoadUpdatesCommandLineHandler>activate 0x3534da0 s LoadUpdatesCommandLineHandler class(CommandLineHandler class)>activateWith: 0x3534f60 s [] in PharoCommandLineHandler(BasicCommandLineHandler)>activateSubCommand: 0x35350e0 s BlockClosure>on:do: 0x3535158 s PharoCommandLineHandler(BasicCommandLineHandler)>activateSubCommand: 0x35351d0 s PharoCommandLineHandler(BasicCommandLineHandler)>handleSubcommand 0x3535230 s PharoCommandLineHandler(BasicCommandLineHandler)>handleArgument: 0x35352a8 s [] in PharoCommandLineHandler(BasicCommandLineHandler)>activate 0x3535338 s BlockClosure>on:do: 0x35353b0 s PharoCommandLineHandler(BasicCommandLineHandler)>activate 0x3535428 s PharoCommandLineHandler>activate 0x3535488 s PharoCommandLineHandler class(CommandLineHandler class)>activateWith: 0x35354e8 s [] in PharoCommandLineHandler class>activateWith: 0x3535548 s NonInteractiveUIManager(UIManager)>defer: 0x35347a8 s PharoCommandLineHandler class>activateWith: 0x35355a8 s [] in BasicCommandLineHandler>activateSubCommand: 0x3535788 s BlockClosure>on:do: 0x3534850 s BasicCommandLineHandler>activateSubCommand: 0x35348c8 s BasicCommandLineHandler>handleSubcommand 0x3535608 s BasicCommandLineHandler>handleArgument: 0x3534928 s [] in BasicCommandLineHandler>activate 0x3535668 s BlockClosure>on:do: 0x35349b8 s BasicCommandLineHandler>activate 0x35356c8 s [] in BasicCommandLineHandler class>startUp: 0x35357e8 s BlockClosure>cull: 0x3535848 s WorkingSession>executeDeferredStartupActions: 0x3534a30 s WorkingSession>runStartup: 0x3535728 s WorkingSession>start: 0x3532290 s SessionManager>snapshot:andQuit: 0x3532530 s [] in SmalltalkImage>snapshot:andQuit: 0x3532650 s CurrentExecutionEnvironment class>activate:for: 0x3532790 s DefaultExecutionEnvironment(ExecutionEnvironment)>beActiveDuring: 0x35328b0 s DefaultExecutionEnvironment class>beActiveDuring: 0x35327f0 s SmalltalkImage>snapshot:andQuit: 0x3532910 s ImageCleanerCommandLineHandler>activate 0x3532970 s ImageCleanerCommandLineHandler class(CommandLineHandler class)>activateWith: 0x35329d0 s [] in PharoCommandLineHandler(BasicCommandLineHandler)>activateSubCommand: 0x3531dd8 s BlockClosure>on:do: 0x3531e50 s PharoCommandLineHandler(BasicCommandLineHandler)>activateSubCommand: 0x3531b38 s PharoCommandLineHandler(BasicCommandLineHandler)>handleSubcommand 0x35322f0 s PharoCommandLineHandler(BasicCommandLineHandler)>handleArgument: 0x3531b98 s [] in PharoCommandLineHandler(BasicCommandLineHandler)>activate 0x3531c10 s BlockClosure>on:do: 0x3531c88 s PharoCommandLineHandler(BasicCommandLineHandler)>activate 0x3532350 s PharoCommandLineHandler>activate 0x3532590 s PharoCommandLineHandler class(CommandLineHandler class)>activateWith: 0x35326d0 s [] in PharoCommandLineHandler class>activateWith: 0x3532850 s NonInteractiveUIManager(UIManager)>defer: 0x352ff50 s PharoCommandLineHandler class>activateWith: 0x35323b0 s [] in BasicCommandLineHandler>activateSubCommand: 0x3531ce8 s BlockClosure>on:do: 0x352fff8 s BasicCommandLineHandler>activateSubCommand: 0x3530070 s BasicCommandLineHandler>handleSubcommand 0x3532410 s BasicCommandLineHandler>handleArgument: 0x35300e0 s [] in BasicCommandLineHandler>activate 0x3531d48 s BlockClosure>on:do: 0x3530170 s BasicCommandLineHandler>activate 0x3532470 s [] in BasicCommandLineHandler class>startUp: 0x35325f0 s BlockClosure>cull: 0x3532730 s WorkingSession>executeDeferredStartupActions: 0x35301e8 s WorkingSession>runStartup: 0x35324d0 s WorkingSession>start: 0x352f698 s SessionManager>snapshot:andQuit: 0x352f6f8 s [] in SmalltalkImage>snapshot:andQuit: 0x352f758 s CurrentExecutionEnvironment class>activate:for: 0x352f7d8 s DefaultExecutionEnvironment(ExecutionEnvironment)>beActiveDuring: 0x352f898 s DefaultExecutionEnvironment class>beActiveDuring: 0x352f838 s SmalltalkImage>snapshot:andQuit: 0x352aaf0 s LoadUpdatesCommandLineHandler>activate 0x352ab50 s LoadUpdatesCommandLineHandler class(CommandLineHandler class)>activateWith: 0x352ad10 s [] in PharoCommandLineHandler(BasicCommandLineHandler)>activateSubCommand: 0x352ae90 s BlockClosure>on:do: 0x352af08 s PharoCommandLineHandler(BasicCommandLineHandler)>activateSubCommand: 0x352af80 s PharoCommandLineHandler(BasicCommandLineHandler)>handleSubcommand 0x352afe0 s PharoCommandLineHandler(BasicCommandLineHandler)>handleArgument: 0x352b058 s [] in PharoCommandLineHandler(BasicCommandLineHandler)>activate 0x352b0e8 s BlockClosure>on:do: 0x352b160 s PharoCommandLineHandler(BasicCommandLineHandler)>activate 0x352b1d8 s PharoCommandLineHandler>activate 0x352b238 s PharoCommandLineHandler class(CommandLineHandler class)>activateWith: 0x352b298 s [] in PharoCommandLineHandler class>activateWith: 0x352b2f8 s NonInteractiveUIManager(UIManager)>defer: 0x352a558 s PharoCommandLineHandler class>activateWith: 0x352b358 s [] in BasicCommandLineHandler>activateSubCommand: 0x352b538 s BlockClosure>on:do: 0x352a600 s BasicCommandLineHandler>activateSubCommand: 0x352a678 s BasicCommandLineHandler>handleSubcommand 0x352b3b8 s BasicCommandLineHandler>handleArgument: 0x352a6d8 s [] in BasicCommandLineHandler>activate 0x352b418 s BlockClosure>on:do: 0x352a768 s BasicCommandLineHandler>activate 0x352b478 s [] in BasicCommandLineHandler class>startUp: 0x352b598 s BlockClosure>cull: 0x352b5f8 s WorkingSession>executeDeferredStartupActions: 0x352a7e0 s WorkingSession>runStartup: 0x352b4d8 s WorkingSession>start: 0x3528030 s SessionManager>snapshot:andQuit: 0x35282d0 s [] in SmalltalkImage>snapshot:andQuit: 0x35283f0 s CurrentExecutionEnvironment class>activate:for: 0x3528530 s DefaultExecutionEnvironment(ExecutionEnvironment)>beActiveDuring: 0x3528650 s DefaultExecutionEnvironment class>beActiveDuring: 0x3528590 s SmalltalkImage>snapshot:andQuit: 0x35286b0 s ImageCleanerCommandLineHandler>activate 0x3528710 s ImageCleanerCommandLineHandler class(CommandLineHandler class)>activateWith: 0x3528770 s [] in PharoCommandLineHandler(BasicCommandLineHandler)>activateSubCommand: 0x3527ba8 s BlockClosure>on:do: 0x3527c20 s PharoCommandLineHandler(BasicCommandLineHandler)>activateSubCommand: 0x3527908 s PharoCommandLineHandler(BasicCommandLineHandler)>handleSubcommand 0x3528090 s PharoCommandLineHandler(BasicCommandLineHandler)>handleArgument: 0x3527968 s [] in PharoCommandLineHandler(BasicCommandLineHandler)>activate 0x35279e0 s BlockClosure>on:do: 0x3527a58 s PharoCommandLineHandler(BasicCommandLineHandler)>activate 0x35280f0 s PharoCommandLineHandler>activate 0x3528330 s PharoCommandLineHandler class(CommandLineHandler class)>activateWith: 0x3528470 s [] in PharoCommandLineHandler class>activateWith: 0x35285f0 s NonInteractiveUIManager(UIManager)>defer: 0x3525d38 s PharoCommandLineHandler class>activateWith: 0x3528150 s [] in BasicCommandLineHandler>activateSubCommand: 0x3527ab8 s BlockClosure>on:do: 0x3525de0 s BasicCommandLineHandler>activateSubCommand: 0x3525e58 s BasicCommandLineHandler>handleSubcommand 0x35281b0 s BasicCommandLineHandler>handleArgument: 0x3525ec8 s [] in BasicCommandLineHandler>activate 0x3527b18 s BlockClosure>on:do: 0x3525f58 s BasicCommandLineHandler>activate 0x3528210 s [] in BasicCommandLineHandler class>startUp: 0x3528390 s BlockClosure>cull: 0x35284d0 s WorkingSession>executeDeferredStartupActions: 0x3525fd0 s WorkingSession>runStartup: 0x3528270 s WorkingSession>start: 0x3525480 s SessionManager>snapshot:andQuit: 0x35254e0 s [] in SmalltalkImage>snapshot:andQuit: 0x3525540 s CurrentExecutionEnvironment class>activate:for: 0x35255c0 s DefaultExecutionEnvironment(ExecutionEnvironment)>beActiveDuring: 0x3525680 s DefaultExecutionEnvironment class>beActiveDuring: 0x3525620 s SmalltalkImage>snapshot:andQuit: 0x3523c50 s LoadUpdatesCommandLineHandler>activate 0x3523cb0 s LoadUpdatesCommandLineHandler class(CommandLineHandler class)>activateWith: 0x3523e70 s [] in PharoCommandLineHandler(BasicCommandLineHandler)>activateSubCommand: 0x3523ff0 s BlockClosure>on:do: 0x3524068 s PharoCommandLineHandler(BasicCommandLineHandler)>activateSubCommand: 0x35240e0 s PharoCommandLineHandler(BasicCommandLineHandler)>handleSubcommand 0x3524140 s PharoCommandLineHandler(BasicCommandLineHandler)>handleArgument: 0x35241b8 s [] in PharoCommandLineHandler(BasicCommandLineHandler)>activate 0x3524248 s BlockClosure>on:do: 0x35242c0 s PharoCommandLineHandler(BasicCommandLineHandler)>activate 0x3524338 s PharoCommandLineHandler>activate 0x3524398 s PharoCommandLineHandler class(CommandLineHandler class)>activateWith: 0x35243f8 s [] in PharoCommandLineHandler class>activateWith: 0x3524458 s NonInteractiveUIManager(UIManager)>defer: 0x35236b8 s PharoCommandLineHandler class>activateWith: 0x35244b8 s [] in BasicCommandLineHandler>activateSubCommand: 0x3524698 s BlockClosure>on:do: 0x3523760 s BasicCommandLineHandler>activateSubCommand: 0x35237d8 s BasicCommandLineHandler>handleSubcommand 0x3524518 s BasicCommandLineHandler>handleArgument: 0x3523838 s [] in BasicCommandLineHandler>activate 0x3524578 s BlockClosure>on:do: 0x35238c8 s BasicCommandLineHandler>activate 0x35245d8 s [] in BasicCommandLineHandler class>startUp: 0x35246f8 s BlockClosure>cull: 0x3524758 s WorkingSession>executeDeferredStartupActions: 0x3523940 s WorkingSession>runStartup: 0x3524638 s WorkingSession>start: 0x3521190 s SessionManager>snapshot:andQuit: 0x3521430 s [] in SmalltalkImage>snapshot:andQuit: 0x3521550 s CurrentExecutionEnvironment class>activate:for: 0x3521690 s DefaultExecutionEnvironment(ExecutionEnvironment)>beActiveDuring: 0x35217b0 s DefaultExecutionEnvironment class>beActiveDuring: 0x35216f0 s SmalltalkImage>snapshot:andQuit: 0x3521810 s ImageCleanerCommandLineHandler>activate 0x3521870 s ImageCleanerCommandLineHandler class(CommandLineHandler class)>activateWith: 0x35218d0 s [] in PharoCommandLineHandler(BasicCommandLineHandler)>activateSubCommand: 0x3520ca8 s BlockClosure>on:do: 0x3520d20 s PharoCommandLineHandler(BasicCommandLineHandler)>activateSubCommand: 0x3520a08 s PharoCommandLineHandler(BasicCommandLineHandler)>handleSubcommand 0x35211f0 s PharoCommandLineHandler(BasicCommandLineHandler)>handleArgument: 0x3520a68 s [] in PharoCommandLineHandler(BasicCommandLineHandler)>activate 0x3520ae0 s BlockClosure>on:do: 0x3520b58 s PharoCommandLineHandler(BasicCommandLineHandler)>activate 0x3521250 s PharoCommandLineHandler>activate 0x3521490 s PharoCommandLineHandler class(CommandLineHandler class)>activateWith: 0x35215d0 s [] in PharoCommandLineHandler class>activateWith: 0x3521750 s NonInteractiveUIManager(UIManager)>defer: 0x351ee20 s PharoCommandLineHandler class>activateWith: 0x35212b0 s [] in BasicCommandLineHandler>activateSubCommand: 0x3520bb8 s BlockClosure>on:do: 0x351eec8 s BasicCommandLineHandler>activateSubCommand: 0x351ef40 s BasicCommandLineHandler>handleSubcommand 0x3521310 s BasicCommandLineHandler>handleArgument: 0x351efb0 s [] in BasicCommandLineHandler>activate 0x3520c18 s BlockClosure>on:do: 0x351f040 s BasicCommandLineHandler>activate 0x3521370 s [] in BasicCommandLineHandler class>startUp: 0x35214f0 s BlockClosure>cull: 0x3521630 s WorkingSession>executeDeferredStartupActions: 0x351f0b8 s WorkingSession>runStartup: 0x35213d0 s WorkingSession>start: 0x351e568 s SessionManager>snapshot:andQuit: 0x351e5c8 s [] in SmalltalkImage>snapshot:andQuit: 0x351e628 s CurrentExecutionEnvironment class>activate:for: 0x351e6a8 s DefaultExecutionEnvironment(ExecutionEnvironment)>beActiveDuring: 0x351e768 s DefaultExecutionEnvironment class>beActiveDuring: 0x351e708 s SmalltalkImage>snapshot:andQuit: 0x351d888 s LoadUpdatesCommandLineHandler>activate 0x351d8e8 s LoadUpdatesCommandLineHandler class(CommandLineHandler class)>activateWith: 0x351daa8 s [] in PharoCommandLineHandler(BasicCommandLineHandler)>activateSubCommand: 0x351dc28 s BlockClosure>on:do: 0x351dca0 s PharoCommandLineHandler(BasicCommandLineHandler)>activateSubCommand: 0x351dd18 s PharoCommandLineHandler(BasicCommandLineHandler)>handleSubcommand 0x351dd78 s PharoCommandLineHandler(BasicCommandLineHandler)>handleArgument: 0x351ddf0 s [] in PharoCommandLineHandler(BasicCommandLineHandler)>activate 0x351de80 s BlockClosure>on:do: 0x351def8 s PharoCommandLineHandler(BasicCommandLineHandler)>activate 0x351df70 s PharoCommandLineHandler>activate 0x351dfd0 s PharoCommandLineHandler class(CommandLineHandler class)>activateWith: 0x351e030 s [] in PharoCommandLineHandler class>activateWith: 0x351e090 s NonInteractiveUIManager(UIManager)>defer: 0x351d2f0 s PharoCommandLineHandler class>activateWith: 0x351e0f0 s [] in BasicCommandLineHandler>activateSubCommand: 0x351e2d0 s BlockClosure>on:do: 0x351d398 s BasicCommandLineHandler>activateSubCommand: 0x351d410 s BasicCommandLineHandler>handleSubcommand 0x351e150 s BasicCommandLineHandler>handleArgument: 0x351d470 s [] in BasicCommandLineHandler>activate 0x351e1b0 s BlockClosure>on:do: 0x351d500 s BasicCommandLineHandler>activate 0x351e210 s [] in BasicCommandLineHandler class>startUp: 0x351e330 s BlockClosure>cull: 0x351e390 s WorkingSession>executeDeferredStartupActions: 0x351d578 s WorkingSession>runStartup: 0x351e270 s WorkingSession>start: 0x351adc8 s SessionManager>snapshot:andQuit: 0x351b068 s [] in SmalltalkImage>snapshot:andQuit: 0x351b188 s CurrentExecutionEnvironment class>activate:for: 0x351b2c8 s DefaultExecutionEnvironment(ExecutionEnvironment)>beActiveDuring: 0x351b3e8 s DefaultExecutionEnvironment class>beActiveDuring: 0x351b328 s SmalltalkImage>snapshot:andQuit: 0x351b448 s ImageCleanerCommandLineHandler>activate 0x351b4a8 s ImageCleanerCommandLineHandler class(CommandLineHandler class)>activateWith: 0x351b508 s [] in PharoCommandLineHandler(BasicCommandLineHandler)>activateSubCommand: 0x351a970 s BlockClosure>on:do: 0x351a9e8 s PharoCommandLineHandler(BasicCommandLineHandler)>activateSubCommand: 0x351a6d0 s PharoCommandLineHandler(BasicCommandLineHandler)>handleSubcommand 0x351ae28 s PharoCommandLineHandler(BasicCommandLineHandler)>handleArgument: 0x351a730 s [] in PharoCommandLineHandler(BasicCommandLineHandler)>activate 0x351a7a8 s BlockClosure>on:do: 0x351a820 s PharoCommandLineHandler(BasicCommandLineHandler)>activate 0x351ae88 s PharoCommandLineHandler>activate 0x351b0c8 s PharoCommandLineHandler class(CommandLineHandler class)>activateWith: 0x351b208 s [] in PharoCommandLineHandler class>activateWith: 0x351b388 s NonInteractiveUIManager(UIManager)>defer: 0x3518ae8 s PharoCommandLineHandler class>activateWith: 0x351aee8 s [] in BasicCommandLineHandler>activateSubCommand: 0x351a880 s BlockClosure>on:do: 0x3518b90 s BasicCommandLineHandler>activateSubCommand: 0x3518c08 s BasicCommandLineHandler>handleSubcommand 0x351af48 s BasicCommandLineHandler>handleArgument: 0x3518c78 s [] in BasicCommandLineHandler>activate 0x351a8e0 s BlockClosure>on:do: 0x3518d08 s BasicCommandLineHandler>activate 0x351afa8 s [] in BasicCommandLineHandler class>startUp: 0x351b128 s BlockClosure>cull: 0x351b268 s WorkingSession>executeDeferredStartupActions: 0x3518d80 s WorkingSession>runStartup: 0x351b008 s WorkingSession>start: 0x3518230 s SessionManager>snapshot:andQuit: 0x3518290 s [] in SmalltalkImage>snapshot:andQuit: 0x35182f0 s CurrentExecutionEnvironment class>activate:for: 0x3518370 s DefaultExecutionEnvironment(ExecutionEnvironment)>beActiveDuring: 0x3518430 s DefaultExecutionEnvironment class>beActiveDuring: 0x35183d0 s SmalltalkImage>snapshot:andQuit: 0x3516768 s LoadUpdatesCommandLineHandler>activate 0x35167c8 s LoadUpdatesCommandLineHandler class(CommandLineHandler class)>activateWith: 0x3516988 s [] in PharoCommandLineHandler(BasicCommandLineHandler)>activateSubCommand: 0x3516b08 s BlockClosure>on:do: 0x3516b80 s PharoCommandLineHandler(BasicCommandLineHandler)>activateSubCommand: 0x3516bf8 s PharoCommandLineHandler(BasicCommandLineHandler)>handleSubcommand 0x3516c58 s PharoCommandLineHandler(BasicCommandLineHandler)>handleArgument: 0x3516cd0 s [] in PharoCommandLineHandler(BasicCommandLineHandler)>activate 0x3516d60 s BlockClosure>on:do: 0x3516dd8 s PharoCommandLineHandler(BasicCommandLineHandler)>activate 0x3516e50 s PharoCommandLineHandler>activate 0x3516eb0 s PharoCommandLineHandler class(CommandLineHandler class)>activateWith: 0x3516f10 s [] in PharoCommandLineHandler class>activateWith: 0x3516f70 s NonInteractiveUIManager(UIManager)>defer: 0x35161d0 s PharoCommandLineHandler class>activateWith: 0x3516fd0 s [] in BasicCommandLineHandler>activateSubCommand: 0x35171b0 s BlockClosure>on:do: 0x3516278 s BasicCommandLineHandler>activateSubCommand: 0x35162f0 s BasicCommandLineHandler>handleSubcommand 0x3517030 s BasicCommandLineHandler>handleArgument: 0x3516350 s [] in BasicCommandLineHandler>activate 0x3517090 s BlockClosure>on:do: 0x35163e0 s BasicCommandLineHandler>activate 0x35170f0 s [] in BasicCommandLineHandler class>startUp: 0x3517210 s BlockClosure>cull: 0x3517270 s WorkingSession>executeDeferredStartupActions: 0x3516458 s WorkingSession>runStartup: 0x3517150 s WorkingSession>start: 0x3513ca8 s SessionManager>snapshot:andQuit: 0x3513f48 s [] in SmalltalkImage>snapshot:andQuit: 0x3514068 s CurrentExecutionEnvironment class>activate:for: 0x35141a8 s DefaultExecutionEnvironment(ExecutionEnvironment)>beActiveDuring: 0x35142c8 s DefaultExecutionEnvironment class>beActiveDuring: 0x3514208 s SmalltalkImage>snapshot:andQuit: 0x3514328 s ImageCleanerCommandLineHandler>activate 0x3514388 s ImageCleanerCommandLineHandler class(CommandLineHandler class)>activateWith: 0x35143e8 s [] in PharoCommandLineHandler(BasicCommandLineHandler)>activateSubCommand: 0x35137c8 s BlockClosure>on:do: 0x3513840 s PharoCommandLineHandler(BasicCommandLineHandler)>activateSubCommand: 0x3513528 s PharoCommandLineHandler(BasicCommandLineHandler)>handleSubcommand 0x3513d08 s PharoCommandLineHandler(BasicCommandLineHandler)>handleArgument: 0x3513588 s [] in PharoCommandLineHandler(BasicCommandLineHandler)>activate 0x3513600 s BlockClosure>on:do: 0x3513678 s PharoCommandLineHandler(BasicCommandLineHandler)>activate 0x3513d68 s PharoCommandLineHandler>activate 0x3513fa8 s PharoCommandLineHandler class(CommandLineHandler class)>activateWith: 0x35140e8 s [] in PharoCommandLineHandler class>activateWith: 0x3514268 s NonInteractiveUIManager(UIManager)>defer: 0x3511958 s PharoCommandLineHandler class>activateWith: 0x3513dc8 s [] in BasicCommandLineHandler>activateSubCommand: 0x35136d8 s BlockClosure>on:do: 0x3511a00 s BasicCommandLineHandler>activateSubCommand: 0x3511a78 s BasicCommandLineHandler>handleSubcommand 0x3513e28 s BasicCommandLineHandler>handleArgument: 0x3511ae8 s [] in BasicCommandLineHandler>activate 0x3513738 s BlockClosure>on:do: 0x3511b78 s BasicCommandLineHandler>activate 0x3513e88 s [] in BasicCommandLineHandler class>startUp: 0x3514008 s BlockClosure>cull: 0x3514148 s WorkingSession>executeDeferredStartupActions: 0x3511bf0 s WorkingSession>runStartup: 0x3513ee8 s WorkingSession>start: 0x35110a0 s SessionManager>snapshot:andQuit: 0x3511100 s [] in SmalltalkImage>snapshot:andQuit: 0x3511160 s CurrentExecutionEnvironment class>activate:for: 0x35111e0 s DefaultExecutionEnvironment(ExecutionEnvironment)>beActiveDuring: 0x35112a0 s DefaultExecutionEnvironment class>beActiveDuring: 0x3511240 s SmalltalkImage>snapshot:andQuit: 0x350d498 s LoadUpdatesCommandLineHandler>activate 0x350d4f8 s LoadUpdatesCommandLineHandler class(CommandLineHandler class)>activateWith: 0x350d6b8 s [] in PharoCommandLineHandler(BasicCommandLineHandler)>activateSubCommand: 0x350d838 s BlockClosure>on:do: 0x350d8b0 s PharoCommandLineHandler(BasicCommandLineHandler)>activateSubCommand: 0x350d928 s PharoCommandLineHandler(BasicCommandLineHandler)>handleSubcommand 0x350d988 s PharoCommandLineHandler(BasicCommandLineHandler)>handleArgument: 0x350da00 s [] in PharoCommandLineHandler(BasicCommandLineHandler)>activate 0x350da90 s BlockClosure>on:do: 0x350db08 s PharoCommandLineHandler(BasicCommandLineHandler)>activate 0x350db80 s PharoCommandLineHandler>activate 0x350dbe0 s PharoCommandLineHandler class(CommandLineHandler class)>activateWith: 0x350dc40 s [] in PharoCommandLineHandler class>activateWith: 0x350dca0 s NonInteractiveUIManager(UIManager)>defer: 0x350cf00 s PharoCommandLineHandler class>activateWith: 0x350dd00 s [] in BasicCommandLineHandler>activateSubCommand: 0x350dee0 s BlockClosure>on:do: 0x350cfa8 s BasicCommandLineHandler>activateSubCommand: 0x350d020 s BasicCommandLineHandler>handleSubcommand 0x350dd60 s BasicCommandLineHandler>handleArgument: 0x350d080 s [] in BasicCommandLineHandler>activate 0x350ddc0 s BlockClosure>on:do: 0x350d110 s BasicCommandLineHandler>activate 0x350de20 s [] in BasicCommandLineHandler class>startUp: 0x350df40 s BlockClosure>cull: 0x350dfa0 s WorkingSession>executeDeferredStartupActions: 0x350d188 s WorkingSession>runStartup: 0x350de80 s WorkingSession>start: 0x350a9d8 s SessionManager>snapshot:andQuit: 0x350ac78 s [] in SmalltalkImage>snapshot:andQuit: 0x350ad98 s CurrentExecutionEnvironment class>activate:for: 0x350aed8 s DefaultExecutionEnvironment(ExecutionEnvironment)>beActiveDuring: 0x350aff8 s DefaultExecutionEnvironment class>beActiveDuring: 0x350af38 s SmalltalkImage>snapshot:andQuit: 0x350b058 s ImageCleanerCommandLineHandler>activate 0x350b0b8 s ImageCleanerCommandLineHandler class(CommandLineHandler class)>activateWith: 0x350b118 s [] in PharoCommandLineHandler(BasicCommandLineHandler)>activateSubCommand: 0x350a580 s BlockClosure>on:do: 0x350a5f8 s PharoCommandLineHandler(BasicCommandLineHandler)>activateSubCommand: 0x350a2e0 s PharoCommandLineHandler(BasicCommandLineHandler)>handleSubcommand 0x350aa38 s PharoCommandLineHandler(BasicCommandLineHandler)>handleArgument: 0x350a340 s [] in PharoCommandLineHandler(BasicCommandLineHandler)>activate 0x350a3b8 s BlockClosure>on:do: 0x350a430 s PharoCommandLineHandler(BasicCommandLineHandler)>activate 0x350aa98 s PharoCommandLineHandler>activate 0x350acd8 s PharoCommandLineHandler class(CommandLineHandler class)>activateWith: 0x350ae18 s [] in PharoCommandLineHandler class>activateWith: 0x350af98 s NonInteractiveUIManager(UIManager)>defer: 0x35086f8 s PharoCommandLineHandler class>activateWith: 0x350aaf8 s [] in BasicCommandLineHandler>activateSubCommand: 0x350a490 s BlockClosure>on:do: 0x35087a0 s BasicCommandLineHandler>activateSubCommand: 0x3508818 s BasicCommandLineHandler>handleSubcommand 0x350ab58 s BasicCommandLineHandler>handleArgument: 0x3508888 s [] in BasicCommandLineHandler>activate 0x350a4f0 s BlockClosure>on:do: 0x3508918 s BasicCommandLineHandler>activate 0x350abb8 s [] in BasicCommandLineHandler class>startUp: 0x350ad38 s BlockClosure>cull: 0x350ae78 s WorkingSession>executeDeferredStartupActions: 0x3508990 s WorkingSession>runStartup: 0x350ac18 s WorkingSession>start: 0x3507e40 s SessionManager>snapshot:andQuit: 0x3507ea0 s [] in SmalltalkImage>snapshot:andQuit: 0x3507f00 s CurrentExecutionEnvironment class>activate:for: 0x3507f80 s DefaultExecutionEnvironment(ExecutionEnvironment)>beActiveDuring: 0x3508040 s DefaultExecutionEnvironment class>beActiveDuring: 0x3507fe0 s SmalltalkImage>snapshot:andQuit: 0x35067b0 s LoadUpdatesCommandLineHandler>activate 0x3506810 s LoadUpdatesCommandLineHandler class(CommandLineHandler class)>activateWith: 0x35069d0 s [] in PharoCommandLineHandler(BasicCommandLineHandler)>activateSubCommand: 0x3506b50 s BlockClosure>on:do: 0x3506bc8 s PharoCommandLineHandler(BasicCommandLineHandler)>activateSubCommand: 0x3506c40 s PharoCommandLineHandler(BasicCommandLineHandler)>handleSubcommand 0x3506ca0 s PharoCommandLineHandler(BasicCommandLineHandler)>handleArgument: 0x3506d18 s [] in PharoCommandLineHandler(BasicCommandLineHandler)>activate 0x3506da8 s BlockClosure>on:do: 0x3506e20 s PharoCommandLineHandler(BasicCommandLineHandler)>activate 0x3506e98 s PharoCommandLineHandler>activate 0x3506ef8 s PharoCommandLineHandler class(CommandLineHandler class)>activateWith: 0x3506f58 s [] in PharoCommandLineHandler class>activateWith: 0x3506fb8 s NonInteractiveUIManager(UIManager)>defer: 0x3506218 s PharoCommandLineHandler class>activateWith: 0x3507018 s [] in BasicCommandLineHandler>activateSubCommand: 0x35071f8 s BlockClosure>on:do: 0x35062c0 s BasicCommandLineHandler>activateSubCommand: 0x3506338 s BasicCommandLineHandler>handleSubcommand 0x3507078 s BasicCommandLineHandler>handleArgument: 0x3506398 s [] in BasicCommandLineHandler>activate 0x35070d8 s BlockClosure>on:do: 0x3506428 s BasicCommandLineHandler>activate 0x3507138 s [] in BasicCommandLineHandler class>startUp: 0x3507258 s BlockClosure>cull: 0x35072b8 s WorkingSession>executeDeferredStartupActions: 0x35064a0 s WorkingSession>runStartup: 0x3507198 s WorkingSession>start: 0x3503cf0 s SessionManager>snapshot:andQuit: 0x3503f90 s [] in SmalltalkImage>snapshot:andQuit: 0x35040b0 s CurrentExecutionEnvironment class>activate:for: 0x35041f0 s DefaultExecutionEnvironment(ExecutionEnvironment)>beActiveDuring: 0x3504310 s DefaultExecutionEnvironment class>beActiveDuring: 0x3504250 s SmalltalkImage>snapshot:andQuit: 0x3504370 s ImageCleanerCommandLineHandler>activate 0x35043d0 s ImageCleanerCommandLineHandler class(CommandLineHandler class)>activateWith: 0x3504430 s [] in PharoCommandLineHandler(BasicCommandLineHandler)>activateSubCommand: 0x3503578 s BlockClosure>on:do: 0x35035f0 s PharoCommandLineHandler(BasicCommandLineHandler)>activateSubCommand: 0x35032d8 s PharoCommandLineHandler(BasicCommandLineHandler)>handleSubcommand 0x3503d50 s PharoCommandLineHandler(BasicCommandLineHandler)>handleArgument: 0x3503338 s [] in PharoCommandLineHandler(BasicCommandLineHandler)>activate 0x35033b0 s BlockClosure>on:do: 0x3503428 s PharoCommandLineHandler(BasicCommandLineHandler)>activate 0x3503db0 s PharoCommandLineHandler>activate 0x3503ff0 s PharoCommandLineHandler class(CommandLineHandler class)>activateWith: 0x3504130 s [] in PharoCommandLineHandler class>activateWith: 0x35042b0 s NonInteractiveUIManager(UIManager)>defer: 0x35016f0 s PharoCommandLineHandler class>activateWith: 0x3503e10 s [] in BasicCommandLineHandler>activateSubCommand: 0x3503488 s BlockClosure>on:do: 0x3501798 s BasicCommandLineHandler>activateSubCommand: 0x3501810 s BasicCommandLineHandler>handleSubcommand 0x3503e70 s BasicCommandLineHandler>handleArgument: 0x3501880 s [] in BasicCommandLineHandler>activate 0x35034e8 s BlockClosure>on:do: 0x3501910 s BasicCommandLineHandler>activate 0x3503ed0 s [] in BasicCommandLineHandler class>startUp: 0x3504050 s BlockClosure>cull: 0x3504190 s WorkingSession>executeDeferredStartupActions: 0x3501988 s WorkingSession>runStartup: 0x3503f30 s WorkingSession>start: 0x35010f8 s SessionManager>snapshot:andQuit: 0x3501158 s [] in SmalltalkImage>snapshot:andQuit: 0x35011b8 s CurrentExecutionEnvironment class>activate:for: 0x3501238 s DefaultExecutionEnvironment(ExecutionEnvironment)>beActiveDuring: 0x35012f8 s DefaultExecutionEnvironment class>beActiveDuring: 0x3501298 s SmalltalkImage>snapshot:andQuit: 0x34ff7f0 s LoadUpdatesCommandLineHandler>activate 0x34ff850 s LoadUpdatesCommandLineHandler class(CommandLineHandler class)>activateWith: 0x34ff8b0 s [] in PharoCommandLineHandler(BasicCommandLineHandler)>activateSubCommand: 0x34ff910 s BlockClosure>on:do: 0x34ff988 s PharoCommandLineHandler(BasicCommandLineHandler)>activateSubCommand: 0x34ffa00 s PharoCommandLineHandler(BasicCommandLineHandler)>handleSubcommand 0x34ffa60 s PharoCommandLineHandler(BasicCommandLineHandler)>handleArgument: 0x34ffad8 s [] in PharoCommandLineHandler(BasicCommandLineHandler)>activate 0x34ffb68 s BlockClosure>on:do: 0x34ffbe0 s PharoCommandLineHandler(BasicCommandLineHandler)>activate 0x34ffc58 s PharoCommandLineHandler>activate 0x34ffcb8 s PharoCommandLineHandler class(CommandLineHandler class)>activateWith: 0x34ffd18 s [] in PharoCommandLineHandler class>activateWith: 0x34ffd78 s NonInteractiveUIManager(UIManager)>defer: 0x34fecc0 s PharoCommandLineHandler class>activateWith: 0x34ff420 s [] in BasicCommandLineHandler>activateSubCommand: 0x34ff600 s BlockClosure>on:do: 0x34fed68 s BasicCommandLineHandler>activateSubCommand: 0x34fede0 s BasicCommandLineHandler>handleSubcommand 0x34ff480 s BasicCommandLineHandler>handleArgument: 0x34fee40 s [] in BasicCommandLineHandler>activate 0x34ff4e0 s BlockClosure>on:do: 0x34feed0 s BasicCommandLineHandler>activate 0x34ff540 s [] in BasicCommandLineHandler class>startUp: 0x34ff660 s BlockClosure>cull: 0x34ff6c0 s WorkingSession>executeDeferredStartupActions: 0x34fef48 s WorkingSession>runStartup: 0x34ff5a0 s WorkingSession>start: 0x34eb490 s SessionManager>snapshot:andQuit: 0x34f1e70 s [] in SmalltalkImage>snapshot:andQuit: 0x34f2448 s CurrentExecutionEnvironment class>activate:for: 0x34f2d20 s DefaultExecutionEnvironment(ExecutionEnvironment)>beActiveDuring: 0x34f3b20 s DefaultExecutionEnvironment class>beActiveDuring: 0x34f2d80 s SmalltalkImage>snapshot:andQuit: 0x34f3b80 s [] in WorldState class>saveAndQuit 0x34f49b0 s BlockClosure>ensure: 0x34f6a58 s CursorWithMask(Cursor)>showWhile: 0x34f6ad0 s WorldState class>saveAndQuit 0x34f8e28 s [] in ToggleMenuItemMorph(MenuItemMorph)>invokeWithEvent: 0x34fa938 s BlockClosure>ensure: 0x34fba10 s CursorWithMask(Cursor)>showWhile: 0x34fba88 s ToggleMenuItemMorph(MenuItemMorph)>invokeWithEvent: 0x34fbe88 s ToggleMenuItemMorph(MenuItemMorph)>mouseUp: 0x34fc0e8 s ToggleMenuItemMorph(MenuItemMorph)>handleMouseUp: 0x34fc148 s MouseButtonEvent>sentTo: 0x34fc1a8 s ToggleMenuItemMorph(Morph)>handleEvent: 0x34fc208 s MorphicEventDispatcher>dispatchDefault:with: 0x34fc268 s MorphicEventDispatcher>handleMouseUp: 0x34fc2c8 s MouseButtonEvent>sentTo: 0x34fc328 s [] in MorphicEventDispatcher>dispatchEvent:with: 0x34fc388 s BlockClosure>ensure: 0x34fc400 s MorphicEventDispatcher>dispatchEvent:with: 0x34fc478 s ToggleMenuItemMorph(Morph)>processEvent:using: 0x34fc4d8 s MorphicEventDispatcher>dispatchDefault:with: 0x34fc538 s MorphicEventDispatcher>handleMouseUp: 0x34fc5c8 s MouseButtonEvent>sentTo: 0x34fc628 s [] in MorphicEventDispatcher>dispatchEvent:with: 0x34fc688 s BlockClosure>ensure: 0x34fc700 s MorphicEventDispatcher>dispatchEvent:with: 0x34fc778 s MenuMorph(Morph)>processEvent:using: 0x34fc7d8 s MenuMorph(Morph)>processEvent: 0x34fc838 s MenuMorph>handleFocusEvent: 0x34fc898 s [] in HandMorph>sendFocusEvent:to:clear: 0x34fc8f8 s BlockClosure>on:do: 0x34fc988 s WorldMorph(PasteUpMorph)>becomeActiveDuring: 0x34fca08 s HandMorph>sendFocusEvent:to:clear: 0x34fca90 s HandMorph>sendEvent:focus:clear: 0x34fcb18 s HandMorph>sendMouseEvent: 0x34fcb78 s HandMorph>handleEvent: 0x34fcbd8 s HandMorph>processEventsFromQueue: 0x34fcc38 s HandMorph>processEvents 0x34fcc98 s [] in WorldState>doOneCycleNowFor: 0x34fccf8 s Array(SequenceableCollection)>do: 0x34fcd70 s WorldState>handsDo: 0x34fcdd0 s WorldState>doOneCycleNowFor: 0x34fce30 s WorldState>doOneCycleFor: 0x34fce90 s WorldMorph>doOneCycle 0x34fcef0 s WorldMorph class>doOneCycle 0x330ab70 s [] in MorphicUIManager>spawnNewProcess 0x330aa10 s [] in BlockClosure>newProcess

Most recent primitives initialize basicIdentityHash basicNew: new: value: do: name value value species new: replaceFrom:to:with:startingAt: at:put: value: basicIdentityHash stringHash:initialHash: basicIdentityHash stringHash:initialHash: stringHash:initialHash: stringHash:initialHash: class stringHash:initialHash: compare:with:collated: at: headerWord perform: externalTypeWithArity stringHash:initialHash: compare:with:collated: basicNew basicNew: new: at:put: replaceFrom:to:with:startingAt: value: stringHash:initialHash: stringHash:initialHash: basicNew value: stringHash:initialHash: compare:with:collated: basicNew class basicNew basicNew needsArityPacking

basicNew basicNew stringHash:initialHash: stringHash:initialHash: stringHash:initialHash: stringHash:initialHash: stringHash:initialHash: stringHash:initialHash: stringHash:initialHash: stringHash:initialHash: stringHash:initialHash: stringHash:initialHash: stringHash:initialHash: stringHash:initialHash: stringHash:initialHash: stringHash:initialHash: stringHash:initialHash: stringHash:initialHash: stringHash:initialHash: stringHash:initialHash: at: ~ basicNew basicIdentityHash at: ~ basicNew basicNew basicNew class basicNew basicNew basicNew resetTo: basicNew

* // basicNew basicNew basicIdentityHash basicIdentityHash value basicNew basicNew includes: includes: basicNew value: value: basicNew stringHash:initialHash: allSequences value:value: hashMultiply class basicNew value: basicIdentityHash at: findElementOrNil:


at: basicNew stringHash:initialHash: push basicNew basicNew size at: class findSubstring:in:startingAt:matchTable: indexOfAscii:inString:startingAt: at: indexOfAscii:inString:startingAt: =

class class stringHash:initialHash: isNil isNil stringHash:initialHash: isNil basicNew new: replaceFrom:to:with:startingAt: new: class value: new:streamContents: value: species new: replaceFrom:to:with:startingAt: at:put: copyWith: copyWith: copyWith: copyWith: copyWith: copyWith: copyWith: value: value:value: basicIdentityHash basicNew: value: basicNew basicNew nextPutAll: nextPutAll: position bytecodeIndex: size stringHash:initialHash: compare:with:collated: perform:

bitShift: bitShift: value notNil notNil size newMethod:header: size at: at:put: size at: at:put: size at: at:put: size at: at:put: basicNew size at:put: at:put: at:put: at:put: at:put: at:put: value:value: objectAt:put: objectAt:put: objectAt:put: objectAt:put: species value: associationsDo: at: inject:into: inject:into: inject:into: value:value: header objectAt:put: new: objectAt: at:put: objectAt: at:put: objectAt: at:put: objectAt: at:put: value: class objectAt:put: basicIdentityHash stringHash:initialHash: objectAt:put: stringHash:initialHash: objectAt:put: objectAt:put: class basicNew: basicAt:put: basicSize basicAt: objectAt:put: basicAt: at:put: flushCache basicNew basicNew basicNew new: vm basicNew size species basicIdentityHash basicIdentityHash at: at: at: numArgs new: tempAt: at:put: withArgs:executeMethod: invokeWithArguments:

stack page bytes 4096 available headroom 2788 minimum unused headroom 3012

(Segmentation fault)

Reply | Threaded
Open this post in threaded view
|

Re: Unable to compile myself Pharo

Garreau, Alexandre
In reply to this post by Garreau, Alexandre

Sorry I don’t see the difference with what I did (and what is asked for GNU–Linux), except your instructions are for 64bits while my system is 32bits.

Using the pharo.zip (32bits version I guess), and running “squeak pharo/Pharo7.0-SNAPSHOT-32bit-4121d0d.image” gives:

Segmentation fault Tue Dec 11 13:23:02 2018

usr/local/lib/squeak/5.0-201812101325/squeak Pharo VM version: 5.0-201812101325 Tue Dec 11 00:52:05 CET 2018 gcc 6.3.0 [Production Spur VM] Built from: CoInterpreter VMMaker.oscog-eem.2488 uuid: 3d088675-fa5c-452e-8063-001ff1d4ab81 Dec 11 2018 With: StackToRegisterMappingCogit VMMaker.oscog-eem.2482 uuid: 7df020b4-6565-4768-9e4a-75bc5464ed95 Dec 11 2018 Revision: VM: 201812101325 [hidden email]:doc/comp/src/pharo/opensmalltalk-vm Date: Mon Dec 10 14:25:06 2018 CommitHash: 14b6d3645 Plugins: 201812101325 [hidden email]:doc/comp/src/pharo/opensmalltalk-vm Build host: Linux portable.galex-713.eu 4.9.0-8-686-pae #1 SMP Debian 4.9.130-2 (2018-10-27) i686 GNU/Linux plugin path: /usr/local/bin../lib/squeak/5.0-201812101325 [default: /usr/local/lib/squeak/5.0-201812101325/]

C stack backtrace & registers: eax 0xbfa3aa64 ebx 0xbfa3a980 ecx 0xbfa3aa18 edx 0xbfa3a9cc edi 0xbfa3a850 esi 0xbfa3a850 ebp 0xbfa3a8e8 esp 0xbfa3a934 eip 0xbfa3ab48 *[0xbfa3ab48] usr/local/bin../lib/squeak/5.0-201812101325/squeak(+0x1df91)[0x4c7f91] usr/local/bin../lib/squeak/5.0-201812101325/squeak(+0x1fe1e)[0x4c9e1e] linux-gate.so.1(_kernelrtsigreturn+0x0)[0xb77b7d10] usr/lib/i386-linux-gnu/libfreetype.so.6(FTNewLibrary+0xa5)[0xb66d44d5] /usr/lib/i386-linux-gnu/libfreetype.so.6(FTInitFreeType+0x2d)[0xb66cf12d] /usr/local/bin../lib/squeak/5.0-201812101325/squeak(+0xca537)[0x574537] [0x8011e8] [0x886e7e] [0x85ffb4] [0x808834] [0x85ff56] [0x86e03b] [0x85fc27] [0x805631] [0x85fa97] [0x80535f] [0x85f77e] [0x801128] [0x886dad] [0x86f7c7] [0x801128] [0x1ebcb29] [0x1ebc0fd] [0x1ebc131] [0x1ebbb87] [0x885faa] [0x8848e4] [0x8847b6] [0x808834] [0x884749] [0x8848e4] [0x8847b6] [0x808834] [0x8010f8] usr/local/bin../lib/squeak/5.0-201812101325/squeak(getVersionInfo+0x231)[0x4c9851]

Smalltalk stack dump: 0xbfa46818 M FT2Library>ffiInitFreeType: 0x1fe45e0: a(n) FT2Library 0xbfa4683c M FT2Library>checkLibrary 0x1fe45e0: a(n) FT2Library 0xbfa46854 M [] in FT2Library>isAvailable 0x1fe45e0: a(n) FT2Library 0xbfa4686c M BlockClosure>on:do: 0xf63ff8: a(n) BlockClosure 0xbfa4688c M FT2Library>isAvailable 0x1fe45e0: a(n) FT2Library 0xbfa468c0 M FreeTypeFontProvider>fontFor:familyName: 0x1fe44b8: a(n) FreeTypeFontProvider 0xbfa468ec M [] in LogicalFontManager>bestFontFor:whenFindingAlternativeIgnoreAll: 0x206e258: a(n) LogicalFontManager 0xbfa46910 M OrderedCollection>do: 0x20781f0: a(n) OrderedCollection 0xbfa46934 M [] in LogicalFontManager>bestFontFor:whenFindingAlternativeIgnoreAll: 0x206e258: a(n) LogicalFontManager 0xbfa46958 M Array(SequenceableCollection)>do: 0xf63e88: a(n) Array 0xbfa46978 M LogicalFontManager>bestFontFor:whenFindingAlternativeIgnoreAll: 0x206e258: a(n) LogicalFontManager 0xbfa469a0 I LogicalFontManager>bestFontFor: 0x206e258: a(n) LogicalFontManager 0xbfa469bc M LogicalFont>findRealFont 0x2b82370: a(n) LogicalFont 0xbfa469d4 M LogicalFont>realFont 0x2b82370: a(n) LogicalFont 0xbfa469f4 I LogicalFont>descentKern 0x2b82370: a(n) LogicalFont 0xbfa46a1c I RubCharacterBlockScanner(RubCharacterScanner)>setFont 0xf63ce0: a(n) RubCharacterBlockScanner 0xbfa46a3c I RubCharacterBlockScanner>setFont 0xf63ce0: a(n) RubCharacterBlockScanner 0xbfa46a5c I RubCharacterBlockScanner>setStopConditions 0xf63ce0: a(n) RubCharacterBlockScanner 0xbfa46a88 I RubCharacterBlockScanner>characterBlockAtPoint:index:in: 0xf63ce0: a(n) RubCharacterBlockScanner 0xbfa46ab0 M RubParagraph>characterBlockAtPoint: 0x2b819c0: a(n) RubParagraph 0xbfa46acc M Message>sendTo: 0xf63b60: a(n) Message 0xbfa46aec M [] in RubOpeningClosingDelimiterDecorator(RubParagraphDecorator)>doesNotUnderstand: characterBlockAtPoint: 0x2b829d0: a(n) RubOpeningClosingDelimiterDecorator 0xbfa46b04 M BlockClosure>on:do: 0xf63bd8: a(n) BlockClosure 0xbfa46b24 M RubOpeningClosingDelimiterDecorator(RubParagraphDecorator)>doesNotUnderstand: characterBlockAtPoint: 0x2b829d0: a(n) RubOpeningClosingDelimiterDecorator 0xbfa46b40 M Message>sendTo: 0xf63aa8: a(n) Message 0xbfa46b60 M [] in RubExtraSelectionDecorator(RubParagraphDecorator)>doesNotUnderstand: characterBlockAtPoint: 0x2b82798: a(n) RubExtraSelectionDecorator 0xbfa46b78 M BlockClosure>on:do: 0xf63b20: a(n) BlockClosure 0xbfa4591c M RubExtraSelectionDecorator(RubParagraphDecorator)>doesNotUnderstand: characterBlockAtPoint: 0x2b82798: a(n) RubExtraSelectionDecorator 0xbfa45950 I RubExtraSelectionDecorator>computeSecondarySelectionShapesFrom:to: 0x2b82798: a(n) RubExtraSelectionDecorator 0xbfa45978 I RubExtraSelectionDecorator>computeSelectionShapesFor: 0x2b82798: a(n) RubExtraSelectionDecorator 0xbfa4599c I RubExtraSelectionDecorator>drawOn: 0x2b82798: a(n) RubExtraSelectionDecorator 0xbfa459c0 I RubExtraSelectionDecorator(RubParagraphDecorator)>drawOn:using:at: 0x2b82798: a(n) RubExtraSelectionDecorator 0xbfa459ec I RubCurrentLineBarDecorator(RubParagraphDecorator)>drawOn:using:at: 0x2b813f8: a(n) RubCurrentLineBarDecorator 0xbfa45a18 I RubShoutStylerDecorator(RubParagraphDecorator)>drawOn:using:at: 0x2b80440: a(n) RubShoutStylerDecorator 0xbfa45a48 I FormCanvas>rubParagraph:bounds:color: 0xf52260: a(n) FormCanvas 0xbfa45a6c M RubEditingArea(RubAbstractTextArea)>drawSubmorphsOn: 0x2b7d8b0: a(n) RubEditingArea 0xbfa45a8c M [] in RubEditingArea(Morph)>fullDrawOn: 0x2b7d8b0: a(n) RubEditingArea 0xbfa45aa4 M FormCanvas>roundCornersOf:in:during: 0xf52260: a(n) FormCanvas 0xbfa45ac8 M FormCanvas(Canvas)>roundCornersOf:during: 0xf52260: a(n) FormCanvas 0xbfa45aec M [] in RubEditingArea(Morph)>fullDrawOn: 0x2b7d8b0: a(n) RubEditingArea 0xbfa45b04 M BlockClosure>on:do: 0xf526e0: a(n) BlockClosure 0xbfa45b24 M RubEditingArea(Morph)>fullDrawOn: 0x2b7d8b0: a(n) RubEditingArea 0xbfa45b40 M FormCanvas(Canvas)>fullDraw: 0xf52260: a(n) FormCanvas 0xbfa45b5c M FormCanvas(Canvas)>fullDrawMorph: 0xf52260: a(n) FormCanvas 0xbfa45b7c M [] in TransformWithLayoutMorph(TransformMorph)>drawSubmorphsOn: 0x2b78db8: a(n) TransformWithLayoutMorph 0xbfa4483c M Array(SequenceableCollection)>reverseDo: 0x2b7b988: a(n) Array 0xbfa44858 M [] in TransformWithLayoutMorph(TransformMorph)>drawSubmorphsOn: 0x2b78db8: a(n) TransformWithLayoutMorph 0xbfa4489c I FormCanvas>transformBy:clippingTo:during:smoothing: 0xf509a8: a(n) FormCanvas 0xbfa448c4 M TransformWithLayoutMorph(TransformMorph)>drawSubmorphsOn: 0x2b78db8: a(n) TransformWithLayoutMorph 0xbfa448e4 M [] in TransformWithLayoutMorph(Morph)>fullDrawOn: 0x2b78db8: a(n) TransformWithLayoutMorph 0xbfa448fc M FormCanvas>roundCornersOf:in:during: 0xf509a8: a(n) FormCanvas 0xbfa44920 M FormCanvas(Canvas)>roundCornersOf:during: 0xf509a8: a(n) FormCanvas 0xbfa44944 M [] in TransformWithLayoutMorph(Morph)>fullDrawOn: 0x2b78db8: a(n) TransformWithLayoutMorph 0xbfa4495c M BlockClosure>on:do: 0xf51a38: a(n) BlockClosure 0xbfa4497c M TransformWithLayoutMorph(Morph)>fullDrawOn: 0x2b78db8: a(n) TransformWithLayoutMorph 0xbfa44998 M FormCanvas(Canvas)>fullDraw: 0xf509a8: a(n) FormCanvas 0xbfa449b4 M FormCanvas(Canvas)>fullDrawMorph: 0xf509a8: a(n) FormCanvas 0xbfa449d4 M [] in RubTextScrollPane(Morph)>drawSubmorphsOn: 0x2b757a8: a(n) RubTextScrollPane 0xbfa449f4 M Array(SequenceableCollection)>reverseDo: 0x2b78d50: a(n) Array 0xbfa44a10 M [] in RubTextScrollPane(Morph)>drawSubmorphsOn: 0x2b757a8: a(n) RubTextScrollPane 0xbfa44a30 M RubTextScrollPane(Morph)>drawSubmorphsOn: 0x2b757a8: a(n) RubTextScrollPane 0xbfa44a4c M RubTextScrollPane>drawSubmorphsOn: 0x2b757a8: a(n) RubTextScrollPane 0xbfa44a6c M [] in RubTextScrollPane(Morph)>fullDrawOn: 0x2b757a8: a(n) RubTextScrollPane 0xbfa44a84 M FormCanvas>roundCornersOf:in:during: 0xf509a8: a(n) FormCanvas 0xbfa44aa8 M FormCanvas(Canvas)>roundCornersOf:during: 0xf509a8: a(n) FormCanvas 0xbfa44acc M [] in RubTextScrollPane(Morph)>fullDrawOn: 0x2b757a8: a(n) RubTextScrollPane 0xbfa44ae4 M BlockClosure>on:do: 0xf51438: a(n) BlockClosure 0xbfa44b04 M RubTextScrollPane(Morph)>fullDrawOn: 0x2b757a8: a(n) RubTextScrollPane 0xbfa44b20 M FormCanvas(Canvas)>fullDraw: 0xf509a8: a(n) FormCanvas 0xbfa44b3c M FormCanvas(Canvas)>fullDrawMorph: 0xf509a8: a(n) FormCanvas 0xbfa44b5c M [] in RubScrolledTextMorph>drawSubmorphsOn: 0x2b6ddf0: a(n) RubScrolledTextMorph 0xbfa44b7c M Array(SequenceableCollection)>reverseDo: 0xf50700: a(n) Array 0xbfa4389c M [] in RubScrolledTextMorph>drawSubmorphsOn: 0x2b6ddf0: a(n) RubScrolledTextMorph 0xbfa438b8 M FormCanvas>clipBy:during: 0xf4eb98: a(n) FormCanvas 0xbfa438e0 M RubScrolledTextMorph>drawSubmorphsOn: 0x2b6ddf0: a(n) RubScrolledTextMorph 0xbfa43900 M [] in RubScrolledTextMorph(Morph)>fullDrawOn: 0x2b6ddf0: a(n) RubScrolledTextMorph 0xbfa43918 M FormCanvas>roundCornersOf:in:during: 0xf4eb98: a(n) FormCanvas 0xbfa4393c M FormCanvas(Canvas)>roundCornersOf:during: 0xf4eb98: a(n) FormCanvas 0xbfa43960 M [] in RubScrolledTextMorph(Morph)>fullDrawOn: 0x2b6ddf0: a(n) RubScrolledTextMorph 0xbfa43978 M BlockClosure>on:do: 0xf4f268: a(n) BlockClosure 0xbfa43998 M RubScrolledTextMorph(Morph)>fullDrawOn: 0x2b6ddf0: a(n) RubScrolledTextMorph 0xbfa439b4 M FormCanvas(Canvas)>fullDraw: 0xf4eb98: a(n) FormCanvas 0xbfa439d0 M FormCanvas(Canvas)>fullDrawMorph: 0xf4eb98: a(n) FormCanvas 0xbfa439f0 M [] in StandardWindow(Morph)>drawSubmorphsOn: 0x2bb7fd0: a(n) StandardWindow 0xbfa43a18 I Array(SequenceableCollection)>reverseDo: 0x2b6bcc8: a(n) Array 0xbfa43a3c I [] in StandardWindow(Morph)>drawSubmorphsOn: 0x2bb7fd0: a(n) StandardWindow 0xbfa43a60 I FormCanvas>clipBy:during: 0xf4d940: a(n) FormCanvas 0xbfa43a8c I StandardWindow(Morph)>drawSubmorphsOn: 0x2bb7fd0: a(n) StandardWindow 0xbfa43aac M [] in StandardWindow(Morph)>fullDrawOn: 0x2bb7fd0: a(n) StandardWindow 0xbfa43ac4 M FormCanvas>roundCornersOf:in:during: 0xf4d940: a(n) FormCanvas 0xbfa43ae8 M FormCanvas(Canvas)>roundCornersOf:during: 0xf4d940: a(n) FormCanvas 0xbfa43b0c M [] in StandardWindow(Morph)>fullDrawOn: 0x2bb7fd0: a(n) StandardWindow 0xbfa43b24 M BlockClosure>on:do: 0xf4dc08: a(n) BlockClosure 0xbfa43b44 M StandardWindow(Morph)>fullDrawOn: 0x2bb7fd0: a(n) StandardWindow 0xbfa43b60 M FormCanvas(Canvas)>fullDraw: 0xf4d940: a(n) FormCanvas 0xbfa43b7c M FormCanvas(Canvas)>fullDrawMorph: 0xf4d940: a(n) FormCanvas 0xbfa42978 M [] in WorldState>drawWorld:submorphs:invalidAreasOn: 0x19e73d0: a(n) WorldState 0xbfa429b0 I Rectangle>allAreasOutsideList:startingAt:do: 0xf05998: a(n) Rectangle 0xbfa429dc I Rectangle>allAreasOutsideList:do: 0xf05998: a(n) Rectangle 0xbfa42a18 M [] in WorldState>drawWorld:submorphs:invalidAreasOn: 0x19e73d0: a(n) WorldState 0xbfa42a3c M Array(SequenceableCollection)>do: 0xf205f8: a(n) Array 0xbfa42a74 I WorldState>drawWorld:submorphs:invalidAreasOn: 0x19e73d0: a(n) WorldState 0xbfa42aac M [] in WorldState>displayWorld:submorphs: 0x19e73d0: a(n) WorldState 0xbfa42acc I FormCanvas>roundCornersOf:in:during: 0xf204a0: a(n) FormCanvas 0xbfa42af8 I FormCanvas(Canvas)>roundCornersOf:during: 0xf204a0: a(n) FormCanvas 0xbfa42b2c I WorldState>displayWorld:submorphs: 0x19e73d0: a(n) WorldState 0xbfa42b54 I WorldMorph>displayWorld 0x19e0c30: a(n) WorldMorph 0xbfa42b80 I TaskbarMorph(Morph)>snapToEdgeIfAppropriate 0x20b3b80: a(n) TaskbarMorph 0xbfa40930 I TaskbarMorph>updateBounds 0x20b3b80: a(n) TaskbarMorph 0xbfa40950 I TaskbarMorph>displayExtentChanged 0x20b3b80: a(n) TaskbarMorph 0xbfa40968 M [] in WorldMorph(PasteUpMorph)>restoreMorphicDisplay 0x19e0c30: a(n) WorldMorph 0xbfa4098c M Array(SequenceableCollection)>do: 0x2009f48: a(n) Array 0xbfa409b0 I WorldMorph(Morph)>submorphsDo: 0x19e0c30: a(n) WorldMorph 0xbfa409d8 I WorldMorph(PasteUpMorph)>restoreMorphicDisplay 0x19e0c30: a(n) WorldMorph 0xbfa409fc I WorldMorph class>startUp 0x19de958: a(n) WorldMorph class 0xbfa40a1c I WorldMorph class(Behavior)>startUp: 0x19de958: a(n) WorldMorph class 0xbfa40a38 M ClassSessionHandler>startup: 0x19e0d10: a(n) ClassSessionHandler 0xbfa40a58 M [] in WorkingSession>runStartup: 0xc67e60: a(n) WorkingSession 0xbfa40a7c M [] in WorkingSession>runList:do: 0xc67e60: a(n) WorkingSession 0xbfa40a94 M BlockClosure>on:do: 0xf058a8: a(n) BlockClosure 0xbfa40ab8 M [] in WorkingSession>runList:do: 0xc67e60: a(n) WorkingSession 0xbfa40adc M Array(SequenceableCollection)>do: 0xc6af30: a(n) Array 0xbfa40b00 I WorkingSession>runList:do: 0xc67e60: a(n) WorkingSession 0xbfa40b28 I WorkingSession>runStartup: 0xc67e60: a(n) WorkingSession 0xbfa40b4c I WorkingSession>start: 0xc67e60: a(n) WorkingSession 0xbfa40b78 I SessionManager>launchSnapshot:andQuit: 0x156fed0: a(n) SessionManager 0x39a0d38 s [] in SessionManager>snapshot:andQuit: 0x39a1448 s [] in BlockClosure>newProcess

Most recent primitives primRenderScanline:with: primFinishedProcessing primRenderScanline:with: primFinishedProcessing primRenderScanline:with: primFinishedProcessing primRenderScanline:with: primFinishedProcessing primRenderScanline:with: primFinishedProcessing primRenderScanline:with: primFinishedProcessing primRenderScanline:with: primFinishedProcessing primRenderScanline:with: primFinishedProcessing primRenderScanline:with: primFinishedProcessing primRenderScanline:with: primFinishedProcessing primRenderScanline:with: primFinishedProcessing primRenderScanline:with: primFinishedProcessing primRenderScanline:with: primFinishedProcessing primRenderScanline:with: primFinishedProcessing primRenderScanline:with: primFinishedProcessing primRenderScanline:with: primFinishedProcessing primRenderScanline:with: primFinishedProcessing primRenderScanline:with: primFinishedProcessing primRenderScanline:with: primFinishedProcessing primRenderScanline:with: primFinishedProcessing primRenderScanline:with: primFinishedProcessing primRenderScanline:with: primFinishedProcessing primRenderScanline:with: primFinishedProcessing primRenderScanline:with: primFinishedProcessing new new new release wait signal release release with:with: with:with: with:with: @ @ *StackOverflow* @ @ shallowCopy truncated truncated truncated truncated @ @ @ @ value: @ @ @ @ @ @ @ value: value:value: truncated @ truncated @ @ @ @ @ copyBits drawLoopX:Y: copyBits value:value: truncated @ truncated @ value:value: @ @ @ @ y < copyBits

copyBits valueOfProperty:ifAbsent: @ @ @ @ @ *StackOverflow* @ @ @ @ @ @ @ @ @ @ shallowCopy basicNew class class class value perform:withArguments: perform:withArguments: perform:withArguments: perform:withArguments: shallowCopy @ @ @ @ truncated truncated truncated truncated @ @ @ @ truncated truncated truncated truncated @ doesNotUnderstand: perform:withArguments: perform:withArguments: perform:withArguments: perform:withArguments: perform:withArguments: perform:withArguments: perform:withArguments: *StackOverflow* perform:withArguments: perform:withArguments: perform:withArguments: perform:withArguments: *StackOverflow* perform:withArguments: perform:withArguments: perform:withArguments: perform:withArguments: perform:withArguments: perform:withArguments: selectionStart perform:withArguments: perform:withArguments: perform:withArguments: perform:withArguments: perform:withArguments: perform:withArguments: perform:withArguments: perform:withArguments: perform:withArguments: species species perform:withArguments: perform:withArguments: perform:withArguments: perform:withArguments: perform:withArguments: perform:withArguments: @ perform:withArguments: perform:withArguments: perform:withArguments: @ @ @ perform:withArguments: perform:withArguments: perform:withArguments: @ @ @ @ @ @ copyBits perform:withArguments: perform:withArguments: perform:withArguments: perform:withArguments: perform:withArguments: perform:withArguments: @ @ @ @ @ basicNew new: value: *StackOverflow* basicNew basicNew ifEmpty: perform:withArguments: perform:withArguments: truncated *StackOverflow* at: basicNew at: at: value:value:value: value: class class class class class basicNew size at: at: at: at: basicNew *StackOverflow* *StackOverflow* basicNew: instVarAt: invokeWithArguments:

stack page bytes 4096 available headroom 2788 minimum unused headroom 3016

(Segmentation fault)

Reply | Threaded
Open this post in threaded view
|

Re: Unable to compile myself Pharo

Garreau, Alexandre

Le 11/12/2018 à 20h45, Ben Coman a écrit :

On Tue, 11 Dec 2018 at 20:24, Alexandre Garreau <[hidden email]> wrote:

Sorry I don’t see the difference with what I did (and what is asked for GNU–Linux),

You had indicated you were following these instructions… https://pharoweekly.wordpress.com/2017/02/23/building-pharo-vm-as-simple-as/ But you can see there has not been much activity in that repo for 12 months… https://github.com/pharo-project/pharo-vm/commits/master You need to build from this repo… https://github.com/OpenSmalltalk/opensmalltalk-vm

Oh sorry, I must have not been clear enough: I used these instructions to build the repository you specified (opensmalltalk-vm).

except your instructions are for 64bits while my system is 32bits.

I missed that. I presume you then adapted to do this instead… $ cd opensmalltalk-vm/build.linux32x86/pharo.cog.spur/build

So that’s precisely what I did.

Using the pharo.zip (32bits version I guess), and running “squeak pharo/Pharo7.0-SNAPSHOT-32bit-4121d0d.image” gives:

You seem to be trying to use the Squeak VM to run Pharo Images. That is undefined behaviour. The Squeak VM and the Pharo VM are build from the same sources, but Pharo links in several C libraries to reuse their functionality rather than reinvent the wheel. IIUC you shouldn't even get a "squeak" executable if you are building from inside "pharo.cog.spur" but a "pharo" and/or "pharo-ui" executable, so I'm confused I'm on Windows so I'm not able to check exactly but from memory you should be doing something like… $ cd opensmalltalk-vm/build.linux32x86/pharo.cog.spur/build $ ./mvm $ cd dist $ ./pharo # or ./pharo-ui if that exists

There is no such directory (dist/), but there is a “squeak” executable in . (opensmalltalk-vm/build.linux32x86/pharo.cog.spur/build).

“find -name pharo” returns nothing.

With that “squeak” executable which “make install” installed (without any pharo executable) I can run a Pharo.image whose I forgot where I found it (I thing it’s the curl-downloaded thing).