CMUCL commit: src/code (x86-vm.lisp)

Raymond Toy rtoy at common-lisp.net
Sat Jan 23 16:24:16 CET 2010


    Date: Saturday, January 23, 2010 @ 10:24:16
  Author: rtoy
    Path: /project/cmucl/cvsroot/src/code

Modified: x86-vm.lisp

:SSE2 should not be a runtime feature saved in internals.h.  This is
handled by the makefile which sets -DFEATURE_SSE2 appropriately
because :SSE2 is a lisp feature saved in internals.inc.  

This was causing the C code to be rebuilt when building x87 and then
sse2 in the same tree.  It's not necessary to do that and should not
be done.


-------------+
 x86-vm.lisp |    4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)


Index: src/code/x86-vm.lisp
diff -u src/code/x86-vm.lisp:1.31 src/code/x86-vm.lisp:1.32
--- src/code/x86-vm.lisp:1.31	Tue Dec  9 21:21:31 2008
+++ src/code/x86-vm.lisp	Sat Jan 23 10:24:16 2010
@@ -7,7 +7,7 @@
 ;;; Scott Fahlman or slisp-group at cs.cmu.edu.
 ;;;
 (ext:file-comment
-  "$Header: /project/cmucl/cvsroot/src/code/x86-vm.lisp,v 1.31 2008-12-10 02:21:31 agoncharov Rel $")
+  "$Header: /project/cmucl/cvsroot/src/code/x86-vm.lisp,v 1.32 2010-01-23 15:24:16 rtoy Exp $")
 ;;;
 ;;; **********************************************************************
 ;;;
@@ -37,7 +37,7 @@
 #+sse2
 (progn
   (setf *features* (delete :x87 *features*))
-  (sys:register-lisp-runtime-feature :sse2))
+  (sys:register-lisp-feature :sse2))
 
 
 ;;;; The sigcontext structure.



More information about the cmucl-commit mailing list