Problem with Saved Image
LispWorks (32-bit) v6.0.1 on Linux (Fedora 14, x86_64)
I use the following file (lw-patches.lisp) to create an image with all
of the patches preloaded:
----------------------------------------------------------
;;; -*- Mode: LISP -*-
(in-package :CL-USER)
;; Run this from a command shell with the following command:
;; lispworks-???? -build lw-patches
;; load all patches
(load-all-patches)
;; save to a new image
(hcl:save-image
(format nil "lw-~A" (substitute #\- #\. (lisp-implementation-version)))
;; :gc t
;; :type :user
;; :normal-gc t
;; :restart-function nil
:console :default
:environment :default
:remarks (format nil "LW ~A" (lisp-implementation-version))
:clean-down t
)
(quit)
-----------------------------------------------------------
It seems to work fine. However, if I build the image today, it will
work fine today and maybe tomorrow, but after that, when I try to run it
I get:
Reading LispWorks file lw-6-0-1: failed to find trailer, error -101
Has anyone else seen something like this? Am I building the file wrong?
Craig