0.9.4.14:
[sbcl/eslaughter.git] / make-target-contrib.sh
blobaf56892abc257eda009792c967ffc23b1b22ca62
1 #!/bin/sh
3 # This is a script to be run as part of make.sh. The only time you'd
4 # probably want to run it by itself is if you're cross-compiling the
5 # system or doing some kind of troubleshooting.
7 # This software is part of the SBCL system. See the README file for
8 # more information.
10 # This software is derived from the CMU CL system, which was
11 # written at Carnegie Mellon University and released into the
12 # public domain. The software is in the public domain and is
13 # provided with absolutely no warranty. See the COPYING and CREDITS
14 # files for more information.
16 LANG=C
17 export LANG
19 . ./find-gnumake.sh
20 find_gnumake
22 # usually SBCL_HOME refers to the installed root of SBCL, not the
23 # build directory. Right now, however, where there are dependencies
24 # between contrib packages, we want the _uninstalled_ versions to be
25 # found
26 SBCL_HOME=`pwd`/contrib
27 export SBCL_HOME
29 SBCL="`pwd`/src/runtime/sbcl --noinform --core `pwd`/output/sbcl.core --userinit /dev/null --sysinit /dev/null --disable-debugger"
30 SBCL_BUILDING_CONTRIB=1
31 export SBCL SBCL_BUILDING_CONTRIB
33 # deleting things here lets us not worry about interaction with stale
34 # fasls. This is not good, but is better than :FORCE on each asdf
35 # operation, because that causes multiple builds of base systems such
36 # as SB-RT and SB-GROVEL, but FIXME: there's probably a better
37 # solution. -- CSR, 2003-05-30
39 find contrib/ \( -name '*.fasl' -o -name 'foo.c' -o -name 'a.out' -o -name 'alien.so' -o -name '*.o' \) \
40 -print | xargs rm -f
42 mkdir -p contrib/systems
43 rm -f contrib/systems/*
45 for i in contrib/*/*.asd; do
46 ln -sf ../../$i contrib/systems/
47 done
49 for i in contrib/*; do
50 test -d $i && test -f $i/Makefile || continue;
51 # export INSTALL_DIR=$SBCL_HOME/`basename $i `
52 test -f $i/test-passed && rm $i/test-passed
53 $GNUMAKE -C $i test && touch $i/test-passed
54 done
56 # Sometimes people used to see the "No tests failed." output from the last
57 # DEFTEST in contrib self-tests and think that's all that is. So...
58 HEADER_HAS_BEEN_PRINTED=false
59 for dir in contrib/*
61 if [ -d "$dir" -a -f "$dir/Makefile" -a ! -f "$dir/test-passed" ]; then
62 if $HEADER_HAS_BEEN_PRINTED; then
63 echo > /dev/null
64 else
65 echo "Failed contribs:"
66 HEADER_HAS_BEEN_PRINTED=true
68 echo " `basename $dir`"
70 done