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 ecd7d26d363b65a174ab04a1c2a802fe8ca96ddc (commit)
from 5abd66f6073fabd08af8e0155f74cd338a28d280 (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 ecd7d26d363b65a174ab04a1c2a802fe8ca96ddc
Author: Raymond Toy <toy.raymond(a)gmail.com>
Date: Tue Apr 29 22:44:04 2014 -0700
Oops. Only compile float-sse2 on x86 machines!
diff --git a/src/tools/comcom.lisp b/src/tools/comcom.lisp
index b75a588..9ad7973 100644
--- a/src/tools/comcom.lisp
+++ b/src/tools/comcom.lisp
@@ -173,8 +173,9 @@
(when *load-stuff*
(load (vmdir "target:assembly/support")))
(comf (vmdir "target:compiler/move"))
-(comf (vmdir "target:compiler/float-sse2")
- :byte-compile *byte-compile*)
+(when (c:target-featurep :x86)
+ (comf (vmdir "target:compiler/float-sse2")
+ :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 | 5 +++--
1 file changed, 3 insertions(+), 2 deletions(-)
hooks/post-receive
--
CMU Common Lisp