Unbreak non-x86 builds
[sbcl.git] / make-target-contrib.sh
blob02233cec5c3244d3d63c20299050d056e4e3c03c
1 #!/bin/sh
2 set -e
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
9 # more information.
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
19 LANG=C
20 LC_ALL=C
22 # Just doing CC=${CC:-cc} may be enough, but it needs to be checked
23 # that cc is available on all platforms.
24 if [ -z $CC ]; then
25 if [ -x "`command -v cc`" ]; then
26 CC=cc
27 else
28 CC=gcc
32 unset EXTRA_CFLAGS # avoid any potential interference
33 export CC LANG LC_ALL
35 # Load our build configuration
36 . output/build-config
38 . ./sbcl-pwd.sh
39 sbcl_pwd
41 SBCL_HOME="$SBCL_PWD/obj/sbcl-home"
42 export SBCL_HOME SBCL_PWD
43 if [ "$OSTYPE" = "cygwin" ] ; then
44 SBCL_PWD=`echo $SBCL_PWD | sed s/\ /\\\\\\\\\ /g`
47 SBCL="$SBCL_PWD/src/runtime/sbcl --noinform --core $SBCL_PWD/output/sbcl.core \
48 --lose-on-corruption --disable-debugger --no-sysinit --no-userinit"
49 SBCL_BUILDING_CONTRIB=1
50 export SBCL SBCL_BUILDING_CONTRIB
52 # deleting things here lets us not worry about interaction with stale
53 # fasls. This is not good, but is better than :FORCE on each asdf
54 # operation, because that causes multiple builds of base systems such
55 # as SB-RT and SB-GROVEL, but FIXME: there's probably a better
56 # solution. -- CSR, 2003-05-30
57 if [ -z "$DONT_CLEAN_SBCL_CONTRIB" ] ; then
58 find contrib/ obj/asdf-cache/ obj/sbcl-home/contrib/ \
59 \( -name '*.fasl' -o \
60 -name '*.FASL' -o \
61 -name 'foo.c' -o \
62 -name 'FOO.C' -o \
63 -name 'a.out' -o \
64 -name 'A.OUT' -o \
65 -name 'alien.so' -o \
66 -name 'ALIEN.SO' -o \
67 -name '*.o' -o \
68 -name '*.O' \) \
69 -print | xargs rm -f
72 find output -name 'building-contrib.*' -print | xargs rm -f
74 # Ignore all source registries.
75 if [ -z "$*" ]; then
76 contribs_to_build="`cd contrib ; echo *`"
77 else
78 contribs_to_build="$*"
81 for i in $contribs_to_build; do
82 test -d contrib/$i && test -f contrib/$i/Makefile || continue;
83 test -f contrib/$i/test-passed && rm contrib/$i/test-passed # remove old convention
84 test -f obj/asdf-cache/$i/test-passed.test-report && rm obj/asdf-cache/$i/test-passed.test-report
85 mkdir -p obj/asdf-cache/$i/
86 # hack to get exit codes right.
87 if $GNUMAKE -C contrib/$i test < /dev/null 2>&1 && touch obj/asdf-cache/$i/test-passed.test-report ; then
89 else
90 exit $?
91 fi | tee output/building-contrib.`basename $i`
92 done
94 # Otherwise report expected failures:
95 HEADER_HAS_BEEN_PRINTED=false
96 for dir in `cd obj/asdf-cache/ ; echo *`; do
97 f="obj/asdf-cache/$dir/test-passed.test-report"
98 if test -f "$f" && grep -i fail "$f" >/dev/null; then
99 if ! $HEADER_HAS_BEEN_PRINTED; then
100 cat <<EOF
102 Note: Test suite failures which are expected for this combination of
103 platform and features have been ignored:
105 HEADER_HAS_BEEN_PRINTED=true
107 echo " contrib/$dir"
108 (unset IFS; while read line; do echo " $line"; done <"$f")
110 done
112 # Sometimes people used to see the "No tests failed." output from the last
113 # DEFTEST in contrib self-tests and think that's all that is. So...
114 HEADER_HAS_BEEN_PRINTED=false
115 for dir in `cd contrib ; echo *`
117 if [ -d "contrib/$dir" -a -f "contrib/$dir/Makefile" -a ! -f "obj/asdf-cache/$dir/test-passed.test-report" ]; then
118 if $HEADER_HAS_BEEN_PRINTED; then
119 echo > /dev/null
120 else
121 cat <<EOF
123 WARNING! Some of the contrib modules did not build successfully or pass
124 their self-tests. Failed contribs:"
126 HEADER_HAS_BEEN_PRINTED=true
128 echo " $dir"
130 done
132 if [ $HEADER_HAS_BEEN_PRINTED = true ]; then
133 exit 1