2021-01-20 23:15:24 +03:00
|
|
|
#!/bin/sh
|
|
|
|
|
2021-04-06 17:42:04 +03:00
|
|
|
set -e # exit on any error
|
2021-01-20 23:15:24 +03:00
|
|
|
|
|
|
|
if [ -z "$SCHEME" ] || [ -z "$IDRIS2_VERSION" ]; then
|
2021-04-06 17:42:04 +03:00
|
|
|
echo "Required SCHEME or IDRIS2_VERSION env is not set."
|
2021-01-20 23:15:24 +03:00
|
|
|
if [ -z "$SCHEME" ]; then
|
|
|
|
echo "Invoke with SCHEME=[name of chez scheme executable]"
|
|
|
|
fi
|
|
|
|
exit 1
|
|
|
|
fi
|
2021-04-06 17:42:04 +03:00
|
|
|
echo "Bootstrapping SCHEME=$SCHEME IDRIS2_VERSION=$IDRIS2_VERSION"
|
2021-01-20 23:15:24 +03:00
|
|
|
|
|
|
|
# Compile the bootstrap scheme
|
|
|
|
# TODO: Move boot-build to Makefile in bootstrap/Makefile
|
|
|
|
cd bootstrap
|
|
|
|
echo "Building idris2-boot from idris2-boot.ss"
|
|
|
|
${SCHEME} --script compile.ss
|
|
|
|
|
|
|
|
# Put the result in the usual place where the target goes
|
|
|
|
mkdir -p ../build/exec
|
|
|
|
mkdir -p ../build/exec/idris2_app
|
2021-04-06 17:42:04 +03:00
|
|
|
install idris2-boot.sh ../build/exec/idris2
|
2021-01-20 23:15:24 +03:00
|
|
|
install idris2_app/* ../build/exec/idris2_app
|