From de00c8e1aec4bfcf93820f68aee5b4b860bd3a13 Mon Sep 17 00:00:00 2001 From: Chris Hanson Date: Sat, 4 Mar 2017 23:18:06 -0800 Subject: [PATCH] Must load host-adapter when compiling svm1. --- src/Makefile.in | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/Makefile.in b/src/Makefile.in index 11b4a001c..0baf53dfd 100644 --- a/src/Makefile.in +++ b/src/Makefile.in @@ -164,7 +164,9 @@ compiler/machines/svm/svm1-defns.h: \ compiler/machines/svm/assembler-runtime.scm \ compiler/machines/svm/compile-assembler.scm ( cd compiler/machines/svm/ \ - && "$(MIT_SCHEME_EXE)" --batch-mode --load compile-assembler \ + && "$(MIT_SCHEME_EXE)" --batch-mode \ + --load ../../../runtime/host-adapter \ + --load compile-assembler \