From d8d6bce450fe606aa48fdbf874001134505734a1 Mon Sep 17 00:00:00 2001
From: Raymond Toy <toy.raymond@gmail.com>
Date: Wed, 30 Apr 2014 21:05:31 -0700
Subject: [PATCH] Oops. Other archs still need float.lisp.

---
 src/tools/comcom.lisp | 7 ++++---
 1 file changed, 4 insertions(+), 3 deletions(-)

diff --git a/src/tools/comcom.lisp b/src/tools/comcom.lisp
index 9ad797383..c564bdbe8 100644
--- a/src/tools/comcom.lisp
+++ b/src/tools/comcom.lisp
@@ -173,9 +173,10 @@
 (when *load-stuff*
   (load (vmdir "target:assembly/support")))
 (comf (vmdir "target:compiler/move"))
-(when (c:target-featurep :x86)
-  (comf (vmdir "target:compiler/float-sse2")
-	:byte-compile *byte-compile*))
+(comf (if (c:target-featurep :sse2)
+	  (vmdir "target:compiler/float-sse2")
+	  (vmdir "target:compiler/float"))
+      :byte-compile *byte-compile*)
 (comf (vmdir "target:compiler/sap") :byte-compile *byte-compile*)
 (when (c:target-featurep :x86)
   (comf (vmdir "target:compiler/sse2-sap")
-- 
GitLab