4 # This is a script to be run as part of make.sh. The only time you'd
5 # probably want to run it by itself is if you're cross-compiling the
6 # system or doing some kind of troubleshooting.
8 # This software is part of the SBCL system. See the README file for
11 # This software is derived from the CMU CL system, which was
12 # written at Carnegie Mellon University and released into the
13 # public domain. The software is in the public domain and is
14 # provided with absolutely no warranty. See the COPYING and CREDITS
15 # files for more information.
17 echo //entering make-target-contrib.sh
29 SBCL_HOME="$SBCL_PWD/contrib"
31 if [ "$OSTYPE" = "cygwin" ] ; then
32 SBCL_PWD=`echo $SBCL_PWD | sed s/\ /\\\\\\\\\ /g`
35 SBCL="$SBCL_PWD/src/runtime/sbcl --noinform --core $SBCL_PWD/output/sbcl.core \
36 --lose-on-corruption --disable-debugger --no-sysinit --no-userinit"
37 SBCL_BUILDING_CONTRIB=1
38 export SBCL SBCL_BUILDING_CONTRIB
40 # deleting things here lets us not worry about interaction with stale
41 # fasls. This is not good, but is better than :FORCE on each asdf
42 # operation, because that causes multiple builds of base systems such
43 # as SB-RT and SB-GROVEL, but FIXME: there's probably a better
44 # solution. -- CSR, 2003-05-30
46 find contrib/ \( -name '*.fasl' -o \
58 find output -name 'building-contrib.*' -print | xargs rm -f
60 # Ignore all source registries.
61 CL_SOURCE_REGISTRY='(:source-registry :ignore-inherited-configuration)'
62 export CL_SOURCE_REGISTRY
64 for i in contrib/*; do
65 test -d $i && test -f $i/Makefile || continue;
66 # export INSTALL_DIR=$SBCL_HOME/`basename $i `
67 test -f $i/test-passed && rm $i/test-passed
68 # hack to get exit codes right.
69 if $GNUMAKE -C $i test 2>&1 && touch $i/test-passed ; then
73 fi | tee output/building-contrib.`basename $i`
76 # Sometimes people used to see the "No tests failed." output from the last
77 # DEFTEST in contrib self-tests and think that's all that is. So...
78 HEADER_HAS_BEEN_PRINTED=false
81 if [ -d "$dir" -a -f "$dir/Makefile" -a ! -f "$dir/test-passed" ]; then
82 if $HEADER_HAS_BEEN_PRINTED; then
87 WARNING! Some of the contrib modules did not build successfully or pass
88 their self-tests. Failed contribs:"
90 HEADER_HAS_BEEN_PRINTED=true
92 echo " `basename $dir`"
96 if [ $HEADER_HAS_BEEN_PRINTED = true ]; then