This is an automated email from the git hooks/post-receive script. It was generated because a ref change was pushed to the repository containing the project "CMU Common Lisp".
The branch, master has been updated via d8d6bce450fe606aa48fdbf874001134505734a1 (commit) from ecd7d26d363b65a174ab04a1c2a802fe8ca96ddc (commit)
Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below.
- Log ----------------------------------------------------------------- commit d8d6bce450fe606aa48fdbf874001134505734a1 Author: Raymond Toy toy.raymond@gmail.com Date: Wed Apr 30 21:05:31 2014 -0700
Oops. Other archs still need float.lisp.
diff --git a/src/tools/comcom.lisp b/src/tools/comcom.lisp index 9ad7973..c564bdb 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")
-----------------------------------------------------------------------
Summary of changes: src/tools/comcom.lisp | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-)
hooks/post-receive