1 ;;; (We want to have some limit on print length and print level during
2 ;;; bootstrapping because PRINT-OBJECT only gets set up rather late,
3 ;;; and running without PRINT-OBJECT it's easy to fall into printing
4 ;;; enormous (or infinitely circular) low-level representations of
6 (setf *print-level
* 5 *print-length
* 5)
8 (load "src/cold/shared.lisp")
9 (load "tools-for-build/ldso-stubs.lisp")
10 (in-package "SB-COLD")
11 (setf *host-obj-prefix
* "obj/from-host/")
12 (load "src/cold/set-up-cold-packages.lisp")
13 (load "src/cold/defun-load-or-cload-xcompiler.lisp")
15 (set-dispatch-macro-character #\
# #\
+ #'she-reader
)
16 (set-dispatch-macro-character #\
# #\-
#'she-reader
)
18 (load-or-cload-xcompiler #'host-cload-stem
)
20 ;;; Let's check that the type system, and various other things, are
21 ;;; reasonably sane. (It's easy to spend a long time wandering around
22 ;;; confused trying to debug cross-compilation if it isn't.)
23 (when (find :sb-test
*shebang-features
*)
24 (load "tests/type.before-xc.lisp")
25 (load "tests/info.before-xc.lisp")
26 (load "tests/vm.before-xc.lisp"))
27 (load "tools-for-build/ucd.lisp")
29 ;;; Generate character database tables.
33 ;;; propagate structure offset and other information to the C runtime
35 (host-cload-stem "src/compiler/generic/genesis")
36 (sb!vm
:genesis
:c-header-dir-name
"src/runtime/genesis")