mirror of
git://git.code.sf.net/p/sbcl/sbcl
synced 2026-09-10 07:26:40 -04:00
fix load-xc.lisp to load, not cload
make a new cload-xc.lisp file to cload if wanted
This commit is contained in:
parent
3f20795ee0
commit
31a71ea7fe
17
cload-xc.lisp
Normal file
17
cload-xc.lisp
Normal file
|
|
@ -0,0 +1,17 @@
|
|||
;;; This can be loaded into Slime, xc-compile-file will produce trace output
|
||||
(load "src/cold/shared.lisp")
|
||||
(in-package "SB-COLD")
|
||||
(setf *host-obj-prefix* "obj/from-host/")
|
||||
(pushnew :sb-xc-host *features*)
|
||||
(pushnew :sb-xc-host-interactive *features*)
|
||||
|
||||
(load "src/cold/set-up-cold-packages.lisp")
|
||||
(load "src/cold/defun-load-or-cload-xcompiler.lisp")
|
||||
|
||||
(load-or-cload-xcompiler #'host-cload-stem)
|
||||
|
||||
(defun xc-compile-file (file)
|
||||
(sb!c::init-xc-policy)
|
||||
(sb!xc:with-compilation-unit ()
|
||||
(sb!xc:compile-file file :trace-file *standard-output*)
|
||||
(setf sb!c::*undefined-warnings* nil)))
|
||||
|
|
@ -8,10 +8,10 @@
|
|||
(load "src/cold/set-up-cold-packages.lisp")
|
||||
(load "src/cold/defun-load-or-cload-xcompiler.lisp")
|
||||
|
||||
(load-or-cload-xcompiler #'host-cload-stem)
|
||||
;; (load-or-cload-xcompiler #'host-load-stem) ;; if the FASLs are already compiled
|
||||
(load-or-cload-xcompiler #'host-load-stem) ;; if the FASLs are already compiled
|
||||
|
||||
(defun xc-compile-file (file)
|
||||
(sb-c::init-xc-policy)
|
||||
(sb-xc:with-compilation-unit ()
|
||||
(sb-xc:compile-file file :trace-file *standard-output*)
|
||||
(setf sb-c::*undefined-warnings* nil)))
|
||||
|
|
|
|||
Loading…
Reference in a new issue