1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90
|
#!/bin/sh
set -em
# --load argument skips compilation.
#
# 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
# system or if you're doing some kind of troubleshooting.
# This software is part of the SBCL system. See the README file for
# more information.
#
# This software is derived from the CMU CL system, which was
# written at Carnegie Mellon University and released into the
# public domain. The software is in the public domain and is
# provided with absolutely no warranty. See the COPYING and CREDITS
# files for more information.
echo //entering make-target-2.sh
LANG=C
LC_ALL=C
export LANG LC_ALL
# Load our build configuration
. output/build-config
if [ -n "$SBCL_HOST_LOCATION" ]; then
echo //copying host-2 files to target
rsync -a "$SBCL_HOST_LOCATION/output/" output/
fi
# Do warm init stuff, e.g. building and loading CLOS, and stuff which
# can't be done until CLOS is running.
#
# Note that it's normal for the newborn system to think rather hard at
# the beginning of this process (e.g. using nearly 100Mb of virtual memory
# and >30 seconds of CPU time on a 450MHz CPU), and unless you built the
# system with the :SB-SHOW feature enabled, it does it rather silently,
# without trying to tell you about what it's doing. So unless it hangs
# for much longer than that, don't worry, it's likely to be normal.
warm_compile=yes
devel=""
if [ "$1" = --load ]; then
warm_compile=no
elif [ "$1" = --load-with-sb-devel ]; then
warm_compile=no
devel="(pushnew :sb-devel *features*)"
elif [ "x$1" != x ]; then
echo Unknown option \'"$1"\' to make-target-2
exit 1
fi
if [ "$warm_compile" = yes ]; then
echo //doing warm init - compilation phase
./src/runtime/sbcl --core output/cold-sbcl.core \
--lose-on-corruption $SBCL_MAKE_TARGET_2_OPTIONS --no-sysinit --no-userinit \
--eval '(sb-fasl::!warm-load "src/cold/warm.lisp")' --quit
fi
echo //doing warm init - load and dump phase
./src/runtime/sbcl --noinform --core output/cold-sbcl.core \
--lose-on-corruption $SBCL_MAKE_TARGET_2_OPTIONS \
--no-sysinit --no-userinit --noprint <<EOF
(progn ${devel})
(sb-fasl::!warm-load "make-target-2-load.lisp")
(setf (extern-alien "gc_coalesce_string_literals" char) 2)
;;; Use the historical (bad) convention for *compile-file-pathname*
(setf sb-c::*merge-pathnames* t)
;;; and for storing pathname namestrings in fasls too.
(setq sb-c::*name-context-file-path-selector* 'truename)
; Turn off IR consistency checking in release mode.
(setq sb-c::*check-consistency* nil)
(let ((sb-ext:*invoke-debugger-hook* (prog1 sb-ext:*invoke-debugger-hook* (sb-ext:enable-debugger))))
(sb-ext:save-lisp-and-die "output/sbcl.core"))
EOF
./src/runtime/sbcl --noinform --core output/sbcl.core \
--no-sysinit --no-userinit --noprint <<EOF
(load "validate-float.lisp")
(check-float-file "output/xfloat-math.lisp-expr")
(ignore-errors (delete-file "output/reorg.core"))
;; * Lisp won't read compressed cores, and crashes on arm64
#+(and mark-region-gc x86-64 (not sb-core-compression))
(progn
(load "tools-for-build/editcore")
(funcall (intern "REORGANIZE-CORE" "SB-EDITCORE") "output/sbcl.core" "output/reorg.core"))
EOF
if [ -r output/reorg.core ]
then
mv output/reorg.core output/sbcl.core
fi
|