aboutsummaryrefslogtreecommitdiff
path: root/src/boot
diff options
context:
space:
mode:
Diffstat (limited to 'src/boot')
-rw-r--r--src/boot/Makefile.in2
-rw-r--r--src/boot/Makefile.pamphlet10
2 files changed, 5 insertions, 7 deletions
diff --git a/src/boot/Makefile.in b/src/boot/Makefile.in
index 013cf2bf..94d98c33 100644
--- a/src/boot/Makefile.in
+++ b/src/boot/Makefile.in
@@ -1,5 +1,5 @@
AXIOM_LOCAL_LISP_sources = initial-env.lisp
-AXIOM_LOCAL_LISP = ../lisp/base-lisp$(EXEEXT)
+AXIOM_LOCAL_LISP = ../lisp/lisp$(EXEEXT)
PROCLAIMS=(load "$(srcdir)/boot-proclaims.lisp")
boot_objects = initial-env.$(FASLEXT) $(boot_sources:.boot=.$(FASLEXT))
diff --git a/src/boot/Makefile.pamphlet b/src/boot/Makefile.pamphlet
index c29602f8..6ce07945 100644
--- a/src/boot/Makefile.pamphlet
+++ b/src/boot/Makefile.pamphlet
@@ -1128,14 +1128,12 @@ workspace (\verb$|shoeOpenInputFile| |shoeOpenOutputFile| memq$).
We will use create and use several lisp images during the build
process. We name them here for convenience.
-\paragraph{[[AXIOM_LOCAL_LISP]].} First we create a Lisp image
-that contains at least three macros for translating
-Boot source files. We do this by loading \File{initial-env.lisp}
-in [[AXIOM_LISP]], and saving the resulting image. That image is then
-used to build the bootstrapping Boot translator.
+\paragraph{[[AXIOM_LOCAL_LISP]].} We start with a Lisp image
+created in a previous build step (src/lisp). That image is used
+to build Boot translator executable through the entire bootstrap process.
<<environment>>=
AXIOM_LOCAL_LISP_sources = initial-env.lisp
-AXIOM_LOCAL_LISP = ../lisp/base-lisp$(EXEEXT)
+AXIOM_LOCAL_LISP = ../lisp/lisp$(EXEEXT)
@