April 8, 2012
4:23 p.m.
Hi, I created an experimental CI build that loads Fuel into the Pharo Kernel, unloads Compiler and uses an special launcher that expects a binary package name as command line argument. https://ci.lille.inria.fr/pharo/view/Pharo-Kernel/job/Pharo%20Kernel%20Fuel/ You can test it with something like (see attachment): CogVM PharoKernel-Fuel-1.4.image testingPackage.fuel Following code exports a fuel binary package from the image: FileStream forceNewFileNamed: 'testingPackage.fuel' do: [:aStream | aStream binary. FLPackageStore new storeOn: aStream packageNamed: 'TestingPackage'.]. As you can see from the output of the testing class, there is no Compiler class in the image. Cheers, -- Pavel