Unbreak non-x86 builds
[sbcl.git] / make.sh
blob9b29b45469fe4898b763f549f165bdb962d55c0a
1 #!/bin/sh
2 set -e
4 LANG=C
5 LC_ALL=C
6 export LANG LC_ALL
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
15 # more information.
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 "$@" || exit $?
29 . output/prefix.def
30 . output/build-config
32 build_started=`date`
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).
50 # On the host system:
51 # SBCL_XC_HOST=<whatever> sh make-host-1.sh
52 # Copy src/runtime/genesis/*.h from the host system to the target
53 # system.
54 # On the target system:
55 # sh make-target-1.sh
56 # Copy src/runtime/sbcl.nm and output/stuff-groveled-from-headers.lisp
57 # from the target system to the host system.
58 # On 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:
62 # sh make-target-2.sh
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
68 # with:
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
71 # necessary files.
72 time sh make-host-1.sh
73 time sh make-target-1.sh
74 time sh make-host-2.sh
75 time sh make-target-2.sh
76 time sh make-target-contrib.sh
78 NCONTRIBS=`find contrib -name Makefile -print | wc -l`
79 NPASSED=`find obj/asdf-cache -name test-passed.test-report -print | wc -l`
80 echo
81 echo "The build seems to have finished successfully, including $NPASSED (out of $NCONTRIBS)"
82 echo "contributed modules. If you would like to run more extensive tests on"
83 echo "the new SBCL, you can try:"
84 echo
85 echo " cd tests && sh ./run-tests.sh"
86 echo
87 echo " (All tests should pass on x86/Linux, x86/FreeBSD4, and ppc/Darwin. On"
88 echo " other platforms some failures are currently expected; patches welcome"
89 echo " as always.)"
90 echo
91 echo "To build documentation:"
92 echo
93 echo " cd doc/manual && make"
94 echo
95 echo "To install SBCL (more information in INSTALL):"
96 echo
97 echo " sh install.sh"
99 # This is probably the best place to ensure people will see this.
100 if test -n "$legacy_xc_spec"
101 then
102 echo <<EOF
103 ******************************************************************************
105 ** Old-style XC-host specification detected: '$SBCL_XC_HOST'
107 ** Since 1.0.41.45 SBCL expects the XC-host to be specified using
108 ** the --xc-host='myhost' command line option, not with a positional
109 ** argument. The legacy style still works, but will not be supported
110 ** indefinitely. Please update your build procedure.
112 ******************************************************************************
116 build_finished=`date`
117 echo
118 echo "//build started: $build_started"
119 echo "//build finished: $build_finished"