X-Git-Url: http://repo.macrolet.net/gitweb/?a=blobdiff_plain;f=make-host-1.sh;h=82ca185f2fb84d0186ed0f21a6bc6ade087161ae;hb=9a2e730f74641e7de6ad4099111db92c5ad863bf;hp=f9e8f6a22e914d4e33ab8548556bd659790c6c85;hpb=ce02ab2ecd9c6ae2e570abd8c93ebf3be55bbdad;p=sbcl.git diff --git a/make-host-1.sh b/make-host-1.sh index f9e8f6a..82ca185 100644 --- a/make-host-1.sh +++ b/make-host-1.sh @@ -33,14 +33,15 @@ $SBCL_XC_HOST <<-'EOF' || exit 1 (load "src/cold/shared.lisp") (in-package "SB-COLD") (setf *host-obj-prefix* "obj/from-host/") - (load "src/cold/shared.lisp") (load "src/cold/set-up-cold-packages.lisp") (load "src/cold/defun-load-or-cload-xcompiler.lisp") (load-or-cload-xcompiler #'host-cload-stem) ;; Let's check that the type system is reasonably sane. (It's ;; easy to spend a long time wandering around confused trying ;; to debug cross-compilation if it isn't.) - (load "tests/type.before-xc.lisp") - (host-cload-stem "compiler/generic/genesis") + (when (find :sb-test *shebang-features*) + (load "tests/type.before-xc.lisp") + (load "tests/info.before-xc.lisp")) + (host-cload-stem "src/compiler/generic/genesis") (sb!vm:genesis :c-header-file-name "src/runtime/sbcl.h") EOF