0.9.6.33:
[sbcl.git] / make-host-1.sh
index 6bbe840..3719026 100644 (file)
@@ -1,4 +1,5 @@
 #!/bin/sh
+set -e
 
 # This is a script to be run as part of make.sh. The only time you'd
 # want to run it by itself is if you're trying to cross-compile the
 
 echo //entering make-host-1.sh
 
+LANG=C
+LC_ALL=C
+export LANG LC_ALL
+
 # Compile and load the cross-compiler. (We load it here not because we're
 # about to use it, but because it's written under the assumption that each
 # file will be loaded before the following file is compiled.)
@@ -31,6 +36,7 @@ $SBCL_XC_HOST <<-'EOF' || exit 1
        ;; low-level representations of things.)
        (setf *print-level* 5 *print-length* 5)
        (load "src/cold/shared.lisp")
+       (load "tools-for-build/ldso-stubs.lisp")
        (in-package "SB-COLD")
        (setf *host-obj-prefix* "obj/from-host/")
        (load "src/cold/set-up-cold-packages.lisp")
@@ -41,8 +47,14 @@ $SBCL_XC_HOST <<-'EOF' || exit 1
        ;; to debug cross-compilation if it isn't.)
        (when (find :sb-test *shebang-features*)
          (load "tests/type.before-xc.lisp")
-         (load "tests/info.before-xc.lisp"))
+         (load "tests/info.before-xc.lisp")
+         (load "tests/vm.before-xc.lisp"))
+        (load "tools-for-build/ucd.lisp")
+        (sb-cold::slurp-ucd)
+        (sb-cold::output)
         (host-cload-stem "src/compiler/generic/genesis")
-       (sb!vm:genesis :c-header-file-name "src/runtime/sbcl.h")
+       (sb!vm:genesis :c-header-dir-name "src/runtime/genesis")
         #+cmu (ext:quit)
+        #+clisp (ext:quit)
+        #+abcl (ext:quit)
        EOF