Tue May 19 16:44:30 CEST 2009 Tobias Rautenkranz * Clozure CL save-application diff -rN -u old-doc/smoke.xml new-doc/smoke.xml --- old-doc/smoke.xml 2014-10-30 07:12:55.000000000 +0100 +++ new-doc/smoke.xml 2014-10-30 07:12:55.000000000 +0100 @@ -200,12 +200,23 @@ +
Saving a Core Image -For near instant startup under SBCL you can save an image with -sb-ext:save-lisp-and-die. -Saving C++ instances is not supported. +For near instant startup you can save an image. Since saving C++ instances is not supported, +it is best to save the image immediately after loading the packages. + + + +Initializing the Smoke bindings when the image is loaded is implementation dependent. It is implemented +for SBCL and Clozure CL. + + +
SBCL +To save an image in SBCL you can use: +sb-ext:save-lisp-and-die +
Bundle To create a bundle containing an SBCL image and the required C wrappers libraries you can use @@ -217,4 +228,25 @@
+
Clozure CL + +To save an image in CCL + +ccl:save-application is usually used. + + + +To allow the image to find the C wrapper libraries, they have to be installed with: + + +sudo make install + + +run in the smoke/ and qt/ directory. + + +
+ +
+