8 # "When we build software, it's a good idea to have a reliable method
9 # for getting an executable from it. We want any two reconstructions
10 # starting from the same source to end up in the same result. That's
11 # just a basic intellectual premise."
12 # -- Christian Queinnec, in _Lisp In Small Pieces_, p. 313
14 # This software is part of the SBCL system. See the README file for
17 # This software is derived from the CMU CL system, which was
18 # written at Carnegie Mellon University and released into the
19 # public domain. The software is in the public domain and is
20 # provided with absolutely no warranty. See the COPYING and CREDITS
21 # files for more information.
23 # If you're cross-compiling, make-config.sh should "do the right
24 # thing" when run on the target machine, with the minor caveat that
25 # any --xc-host parameter should be suitable for the host machine
26 # instead of the target.
27 sh make-config.sh
"$@" --check-host-lisp ||
exit $?
33 echo "//Starting build: $build_started"
34 # Apparently option parsing succeeded. Print out the results.
35 echo "//Options: --prefix='$SBCL_PREFIX' --xc-host='$SBCL_XC_HOST'"
37 # Enforce the source policy for no bogus whitespace
38 $SBCL_XC_HOST < tools-for-build
/canonicalize-whitespace.lisp ||
exit 1
40 # The make-host-*.sh scripts are run on the cross-compilation host,
41 # and the make-target-*.sh scripts are run on the target machine. In
42 # ordinary compilation, we just do these phases consecutively on the
43 # same machine, but if you wanted to cross-compile from one machine
44 # which supports Common Lisp to another which does not (yet:-) support
45 # Common Lisp, you could do something like this:
46 # Create copies of the source tree on both the host and the target.
47 # Read the make-config.sh script carefully and emulate it by hand
48 # on both machines (e.g. creating "target"-named symlinks to
49 # identify the target architecture).
51 # SBCL_XC_HOST=<whatever> sh make-host-1.sh
52 # Copy src/runtime/genesis/*.h from the host system to the target
54 # On the target system:
56 # Copy src/runtime/sbcl.nm and output/stuff-groveled-from-headers.lisp
57 # from the target system to the host system.
59 # SBCL_XC_HOST=<whatever> sh make-host-2.sh
60 # Copy output/cold-sbcl.core from the host system to the target system.
61 # On the target system:
63 # sh make-target-contrib.sh
64 # Or, if you can set up the files somewhere shared (with NFS, AFS, or
65 # whatever) between the host machine and the target machine, the basic
66 # procedure above should still work, but you can skip the "copy" steps.
67 # If you can use rsync on the host machine, you can call make-config.sh
69 # --host-location=user@host-machine:<rsync path to host sbcl directory>
70 # and the make-target-*.sh scripts will take care of transferring the
73 if command -v time > /dev
/null
; then
79 maybetime sh make-host-1.sh
80 maybetime sh make-target-1.sh
81 maybetime sh make-host-2.sh
82 maybetime sh make-target-2.sh
83 maybetime sh make-target-contrib.sh
85 # Confirm that default evaluation strategy is :INTERPRET if sb-fasteval was built
86 src
/runtime
/sbcl
--core output
/sbcl.core
--lose-on-corruption --noinform \
87 --no-sysinit --no-userinit --disable-debugger \
88 --eval '(when (find-package "SB-INTERPRETER") (assert (eq *evaluator-mode* :interpret)))' \
91 .
/src
/runtime
/sbcl
--core output
/sbcl.core \
92 --lose-on-corruption --noinform $SBCL_MAKE_TARGET_2_OPTIONS --no-sysinit --no-userinit --eval '
97 (sb-vm:map-allocated-objects
98 (lambda (obj type size)
99 (declare (ignore size))
100 (when (and (= type sb-vm:symbol-widetag) (not (symbol-package obj))
101 (search "!" (string obj)))
103 (when (and (= type sb-vm:fdefn-widetag)
105 (sb-int:fun-name-block-name
106 (sb-kernel:fdefn-name obj)))))
109 (when l1 (format t "Found ~D:~%~S~%" (length l1) l1))
111 (mapcan (quote apropos-list)
112 (quote ("DEFINE-INFO-TYPE" "LVAR-TYPE-USING"
114 "PPRINT-TAGBODY-GUTS" "WITH-DESCRIPTOR-HANDLERS"
115 "SUBTRACT-BIGNUM-LOOP" "BIGNUM-REPLACE" "WITH-BIGNUM-BUFFERS"
116 "GCD-ASSERT" "MODULARLY" "BIGNUM-NEGATE-LOOP"
117 "SHIFT-RIGHT-UNALIGNED"
118 "STRING-LESS-GREATER-EQUAL-TESTS")))
119 (format t "~&Leftover from [disabled?] tree-shaker:~%~S~%" sb-int:it))
121 (format t "Found ~D fdefns named by uninterned symbols:~%~S~%" (length l2) l2)))
123 :report "Abort building SBCL."
124 (sb-ext:exit :code 1))))' --quit
126 # contrib/Makefile shouldn't be counted in NCONTRIBS nor should asdf and uiop.
127 # The asdf directory produces 2 fasls, so is unlike all our other contribs
128 # and would therefore mess up the accounting here if included.
129 NCONTRIBS
=`ls -1 contrib/sb-*/Makefile | wc -l`
130 NPASSED
=`ls obj/sbcl-home/contrib/sb-*.fasl | wc -l`
132 echo "The build seems to have finished successfully, including $NPASSED (out of $NCONTRIBS)"
133 echo "contributed modules. If you would like to run more extensive tests on"
134 echo "the new SBCL, you can try:"
136 echo " cd ./tests && sh ./run-tests.sh"
138 echo "To build documentation:"
140 echo " cd ./doc/manual && make"
142 echo "To install SBCL (more information in INSTALL):"
144 echo " sh install.sh"
146 build_finished
=`date`
148 echo "//build started: $build_started"
149 echo "//build finished: $build_finished"