Skip to content
Snippets Groups Projects
Commit e86597ac authored by rtoy's avatar rtoy
Browse files

boot-1007-11-14-1.lisp:

o Add comments that we need to cross-compile on x86.
o Load up boot-2007-11-1 for the x86 cross-compile to get rid of a
  warning.
o Load up the default cross-x86-x86 script.

exports.lisp:
o Remove FLOAT-ACCURACY.  It is now gone.
parent 71a7a181
No related branches found
No related tags found
No related merge requests found
;;; Bootstrap file for removing the FLOAT-ACCURACY stuff.
;;;
;;; For x86, I think you need to do a cross-compile. Use this file as
;;; the cross-compile script. For other architectures, I don't think
;;; you need to do a cross-compile. Just a normal build with this as
;;; the bootstrap file will work.
#+x86
(load "target:bootfiles/19d/boot-2007-11-1")
(in-package :c) (in-package :c)
(handler-bind ((error (lambda (c) (handler-bind ((error (lambda (c)
(declare (ignore c)) (declare (ignore c))
...@@ -6,3 +16,6 @@ ...@@ -6,3 +16,6 @@
'((speed . cookie-speed) (space . cookie-space) (safety . cookie-safety) '((speed . cookie-speed) (space . cookie-space) (safety . cookie-safety)
(cspeed . cookie-cspeed) (brevity . cookie-brevity) (cspeed . cookie-cspeed) (brevity . cookie-brevity)
(debug . cookie-debug)))) (debug . cookie-debug))))
#+x86
(load "target:tools/cross-scripts/cross-x86-x86")
...@@ -5,7 +5,7 @@ ...@@ -5,7 +5,7 @@
;;; Carnegie Mellon University, and has been placed in the public domain. ;;; Carnegie Mellon University, and has been placed in the public domain.
;;; ;;;
(ext:file-comment (ext:file-comment
"$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/exports.lisp,v 1.263 2007/11/09 19:24:36 rtoy Exp $") "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/exports.lisp,v 1.264 2007/11/14 17:28:25 rtoy Exp $")
;;; ;;;
;;; ********************************************************************** ;;; **********************************************************************
;;; ;;;
...@@ -1227,7 +1227,7 @@ ...@@ -1227,7 +1227,7 @@
(:import-from "KERNEL" "DOUBLE-DOUBLE-FLOAT" "DD-PI") (:import-from "KERNEL" "DOUBLE-DOUBLE-FLOAT" "DD-PI")
(:export "*AFTER-GC-HOOKS*" "*AFTER-SAVE-INITIALIZATIONS*" (:export "*AFTER-GC-HOOKS*" "*AFTER-SAVE-INITIALIZATIONS*"
"DEBUG" "DEBUG"
"FLOATING-POINT-INEXACT" "FLOAT-ACCURACY" "FLOATING-POINT-INEXACT"
"*ALL-MODIFIER-NAMES*" "*ANSI-DEFSTRUCT-OPTIONS-P*" "*ALL-MODIFIER-NAMES*" "*ANSI-DEFSTRUCT-OPTIONS-P*"
"*AUTOLOAD-TRANSLATIONS*" "*AUTOLOAD-TRANSLATIONS*"
"*BACKUP-EXTENSION*" "*BEFORE-GC-HOOKS*" "*BACKUP-EXTENSION*" "*BEFORE-GC-HOOKS*"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment