X-Git-Url: http://repo.macrolet.net/gitweb/?a=blobdiff_plain;f=make-host-1.sh;h=01ba05bbb8926176d7204de7acf7587be6dc004b;hb=5813c792f8a5d69dd796d2b545b8f7867ddef389;hp=f9e8f6a22e914d4e33ab8548556bd659790c6c85;hpb=ce02ab2ecd9c6ae2e570abd8c93ebf3be55bbdad;p=sbcl.git diff --git a/make-host-1.sh b/make-host-1.sh index f9e8f6a..01ba05b 100644 --- a/make-host-1.sh +++ b/make-host-1.sh @@ -33,14 +33,16 @@ $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") - (sb!vm:genesis :c-header-file-name "src/runtime/sbcl.h") + (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-dir-name "src/runtime/genesis") + #+cmu (ext:quit) EOF