1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63
|
#!/bin/sh
set -e
build_started=`date`
./make-config.sh "$@" --with-android --without-gcc-tls --check-host-lisp || exit $?
. output/prefix.def
. output/build-config
$SBCL_XC_HOST < tools-for-build/canonicalize-whitespace.lisp || exit 1
./make-host-1.sh
./make-target-1.sh
./make-host-2.sh
adb push ./ /data/local/tmp/sbcl/
adb shell "cd /data/local/tmp/sbcl ; LD_LIBRARY_PATH=/data/local/tmp/sbcl/android-libs sh make-target-2.sh"
# Hack needed to replace SB-GROVEL:RUN-C-COMPILER
compile_one() {
bin=temp-compile-from-android
adb pull /data/local/tmp/sbcl/contrib/asdf/$2 $bin.c
$CC $bin.c -o $bin
dest=$(echo $3 | sed 's/\r//g') # On older android line terminates with \r
adb push $bin /data/local/tmp/sbcl/contrib/asdf/$dest
echo "done"
rm $bin
rm $bin.c
}
adb shell "cd /data/local/tmp/sbcl ; LD_LIBRARY_PATH=/data/local/tmp/sbcl/android-libs sh make-target-contrib-android.sh" | \
while read line ;
do echo "$line" ;
echo $line | grep "RUN-C-COMPILER" | while read line ; do compile_one $line ; done ;
done
adb pull /data/local/tmp/sbcl/obj
adb pull /data/local/tmp/sbcl/output
./make-shared-library.sh
NPASSED=`ls obj/sbcl-home/contrib/sb-*.fasl | wc -l`
echo
echo "The build seems to have finished successfully, including $NPASSED (out of $NCONTRIBS)"
echo "contributed modules. If you would like to run more extensive tests on"
echo "the new SBCL, you can try:"
echo
echo " cd ./tests && sh ./run-tests.sh"
echo
echo "To build documentation:"
echo
echo " cd ./doc/manual && make"
echo
echo "To install SBCL (more information in INSTALL):"
echo
echo " sh install.sh"
build_finished=`date`
echo
echo "//build started: $build_started"
echo "//build finished: $build_finished"
|