Fix REPLACE and REPLACE transforms when copying zero elements.
[sbcl.git] / make-genesis-2.lisp
blob8a81496db0fd0eabe64cf9388adfd3a6b155dde8
1 (setf *print-level* 5 *print-length* 5)
2 (load "src/cold/shared.lisp")
3 (in-package "SB-COLD")
4 (setf *host-obj-prefix* "obj/from-host/"
5 *target-obj-prefix* "obj/from-xc/")
6 (load "src/cold/set-up-cold-packages.lisp")
7 (load "src/cold/defun-load-or-cload-xcompiler.lisp")
8 (load-or-cload-xcompiler #'host-load-stem)
9 (defparameter *target-object-file-names*
10 (with-open-file (s "output/object-filenames-for-genesis.lisp-expr"
11 :direction :input)
12 (read s)))
13 (load "tools-for-build/corefile.lisp" :verbose nil)
14 (host-cload-stem "src/compiler/generic/genesis" nil)
16 (sb-cold:genesis :object-file-names *target-object-file-names*
17 :c-header-dir-name "output/genesis-2"
18 :symbol-table-file-name "src/runtime/sbcl.nm"
19 :core-file-name "output/cold-sbcl.core"
20 ;; The map file is not needed by the system, but can be
21 ;; very handy when debugging cold init problems.
22 :map-file-name "output/cold-sbcl.map")
23 #+cmu (ext:quit)
24 #+clisp (ext:quit)
25 #+abcl (ext:quit)