#!/bin/sh # # $Id: mk,v 1.27 2005/06/11 21:19:36 wenzelm Exp $ # Author: Markus Wenzel, TU Muenchen # # mk - build Pure Isabelle. # # Requires proper Isabelle settings environment (cf. IsaMakefile). ## diagnostics usage() { echo echo "Usage: $PRG [OPTIONS]" echo echo " Make Pure Isabelle." echo echo " -C tell ML system to copy output image" echo " -r prepare RAW image only" echo exit 1 } fail() { echo "$1" >&2 exit 2 } ## process command line # options COPY="" RAW="" while getopts "Cr" OPT do case "$OPT" in C) COPY="-C" ;; r) RAW=true ;; \?) usage ;; esac done shift $(($OPTIND - 1)) # args [ "$#" -ne 0 ] && usage ## main # get compatibility file ML_SYSTEM_BASE=$(echo "$ML_SYSTEM" | cut -f1 -d-) [ -z "$ML_SYSTEM" ] && fail "Missing ML_SYSTEM settings!" COMPAT="" [ -f "ML-Systems/$ML_SYSTEM_BASE.ML" ] && COMPAT="ML-Systems/$ML_SYSTEM_BASE.ML" [ -f "ML-Systems/$ML_SYSTEM.ML" ] && COMPAT="ML-Systems/$ML_SYSTEM.ML" [ -z "$COMPAT" ] && fail "Missing compatibility file for ML system \"$ML_SYSTEM\"!" # prepare log dir LOGDIR="$ISABELLE_OUTPUT/log" mkdir -p "$LOGDIR" # run isabelle SECONDS=$(( `date +'%j * 86400 + %H * 3600 + %M * 60 + %S'` )) if [ -z "$RAW" ]; then ITEM="Pure" echo "Building $ITEM ..." LOG="$LOGDIR/$ITEM" "$ISABELLE" $COPY \ -e "val ml_system = \"$ML_SYSTEM\";" \ -e "val ml_platform = \"$ML_PLATFORM\";" \ -e "(use\"$COMPAT\"; use\"ROOT.ML\") handle _ => exit 1;" \ -f -c -q -w RAW_ML_SYSTEM Pure > "$LOG" 2>&1 RC="$?" else ITEM="RAW" echo "Building $ITEM ..." LOG="$LOGDIR/$ITEM" "$ISABELLE" $COPY \ -e "val ml_system = \"$ML_SYSTEM\";" \ -e "val ml_platform = \"$ML_PLATFORM\";" \ -e "use\"$COMPAT\" handle _ => exit 1;" \ -q -w RAW_ML_SYSTEM RAW > "$LOG" 2>&1 RC="$?" fi ELAPSED=$("$ISABELLE_HOME/lib/scripts/showtime" "$SECONDS") # exit status if [ "$RC" -eq 0 ]; then echo "Finished $ITEM ($ELAPSED elapsed time)" gzip --force "$LOG" else echo "$ITEM FAILED" echo "(see also $LOG)" echo; tail "$LOG"; echo fi exit "$RC"