From: Chris Hanson <org/chris-hanson/cph>
Date: Thu, 18 Jul 2019 01:24:29 +0000 (-0400)
Subject: Tweak Makefile to ensure that SF is loaded prior to host-adapter.
X-Git-Url: https://birchwood-abbey.net/git?a=commitdiff_plain;h=f4e1453f23caba640b45683b955d3fb8d4ca9aa1;p=mit-scheme.git

Tweak Makefile to ensure that SF is loaded prior to host-adapter.

This is necessary for the time being and might be needed in the future.
---

diff --git a/src/Makefile.in b/src/Makefile.in
index 254232e63..369b8cc94 100644
--- a/src/Makefile.in
+++ b/src/Makefile.in
@@ -87,9 +87,6 @@ HOST_COMPILER_SETTINGS = \
 HOST_COMPILER = '$(MIT_SCHEME_EXE)' --batch-mode $(HOST_COMPILER_HEAP) --no-init-file \
   --eval '(begin $(HOST_COMPILER_SETTINGS))' --load runtime/host-adapter.scm
 
-HOST_RUNTIME_ONLY = '$(MIT_SCHEME_EXE)' --batch-mode $(HOST_COMPILER_HEAP) \
-  --band runtime.com --no-init-file --load runtime/host-adapter.scm
-
 HOST_SF_ONLY = '$(MIT_SCHEME_EXE)' --batch-mode $(HOST_COMPILER_HEAP) \
   --band runtime.com --no-init-file --eval '(load-option (quote sf))' \
   --load runtime/host-adapter.scm
@@ -260,7 +257,7 @@ compiler/machines/svm/svm1-defns.h: \
 	  compiler/machines/svm/compile-assembler.scm
 	(echo '(with-working-directory-pathname "compiler/machines/svm"' && \
 	 echo '  (lambda () (load "compile-assembler")))') \
-	| $(HOST_RUNTIME_ONLY)
+	| $(HOST_SF_ONLY)
 
 ################
 # CREF