From 40721bc070d36c21d1ffb12b527c7e24487a62c3 Mon Sep 17 00:00:00 2001
From: ram <ram>
Date: Sun, 25 Aug 1991 20:19:57 +0000
Subject: [PATCH] Added compilation of assem-check and RT conditionalization of
 the float file to load.

---
 tools/comcom.lisp | 5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/tools/comcom.lisp b/tools/comcom.lisp
index c0395df68..cdf2b6481 100644
--- a/tools/comcom.lisp
+++ b/tools/comcom.lisp
@@ -173,7 +173,9 @@
   (comf "target:compiler/rt/sap")
   (comf "target:compiler/rt/system")
   (comf "target:compiler/rt/char")
-  (comf "target:compiler/rt/float")
+  (if (eq vm::*target-float-hardware* :afpa)
+      (comf "target:compiler/rt/afpa")
+      (comf "target:compiler/rt/mc68881"))
   (comf "target:compiler/rt/memory")
   (comf "target:compiler/rt/static-fn")
   (comf "target:compiler/rt/arith")
@@ -222,6 +224,7 @@
   (comf "target:compiler/pack"))
 (comf "target:compiler/codegen")
 (comf "target:compiler/debug")
+(comf "target:compiler/assem-check")
 (comf "target:compiler/statcount")
 (comf "target:compiler/dyncount")
 
-- 
GitLab