From c0810abb3880b7aceaf5f6a82720c86eeb2e6d46 Mon Sep 17 00:00:00 2001
From: rtoy <rtoy>
Date: Sat, 23 Jan 2010 15:24:16 +0000
Subject: [PATCH] :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.
---
 code/x86-vm.lisp | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/code/x86-vm.lisp b/code/x86-vm.lisp
index 51866a748..4cde11942 100644
--- a/code/x86-vm.lisp
+++ b/code/x86-vm.lisp
@@ -7,7 +7,7 @@
 ;;; Scott Fahlman or slisp-group@cs.cmu.edu.
 ;;;
 (ext:file-comment
-  "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/x86-vm.lisp,v 1.31 2008/12/10 02:21:31 agoncharov Rel $")
+  "$Header: /Volumes/share2/src/cmucl/cvs2git/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.
-- 
GitLab