From 9a833110c5c1a709ec480520a7d758652b4d6900 Mon Sep 17 00:00:00 2001 From: Juho Snellman Date: Thu, 20 Oct 2005 20:44:16 +0000 Subject: [PATCH] 0.9.5.79: Compact the global environment info even when saving a core without purifying. Shrinks the x86-64 core by about 2.5MB. --- src/code/save.lisp | 3 +++ version.lisp-expr | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/src/code/save.lisp b/src/code/save.lisp index 8dd87c9d3..ac69bb9c9 100644 --- a/src/code/save.lisp +++ b/src/code/save.lisp @@ -126,6 +126,9 @@ sufficiently motivated to do lengthy fixes." :environment-name environment-name) (save-core nil)) (t + ;; Compact the environment even though we're skipping the + ;; other purification stages. + (sb!kernel::compact-environment-aux "Auxiliary" 200) (save-core t))))) (defun deinit () diff --git a/version.lisp-expr b/version.lisp-expr index ffe2269ef..726046d5a 100644 --- a/version.lisp-expr +++ b/version.lisp-expr @@ -17,4 +17,4 @@ ;;; 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.5.78" +"0.9.5.79" -- 2.11.4.GIT