If the core wasn't found on startup, don't just say we couldn't
find it, but also where sbcl thought the core should be.
#endif
#ifndef SBCL_HOME
-#define SBCL_HOME "/usr/local/lib/sbcl/"
+#define SBCL_HOME "/opt/packages/sbcl/0.9.15.1/lib/sbcl/"
#endif
\f
sizeof(char));
sprintf(lookhere, "%s%s", sbcl_home, stem);
core = copied_existing_filename_or_null(lookhere);
- free(lookhere);
+
if (!core) {
- lose("can't find core file\n");
+ lose("can't find core file at %s\n", lookhere);
}
+ free(lookhere);
+
return core;
}
;;; checkins which aren't released. (And occasionally for internal
;;; versions, especially for internal versions off the main CVS
;;; branch, it gets hairier, e.g. "0.pre7.14.flaky4.13".)
-"0.9.15.3"
+"0.9.15.4"