lib/Tools/scala
author wenzelm
Fri, 24 May 2024 16:15:27 +0200
changeset 80188 3956e8b6a9c9
parent 79561 4838fcbd019b
permissions -rwxr-xr-x
more uniform/robust detect_repository/is_repository: actually check hg root;

#!/usr/bin/env bash
#
# Author: Makarius
#
# DESCRIPTION: invoke Scala within the Isabelle environment

isabelle scala_build || exit $?

classpath "$ISABELLE_SETUP_CLASSPATH"; unset ISABELLE_SETUP_CLASSPATH
classpath "$CLASSPATH"; export CLASSPATH=""

export jvm_cp_args="$(platform_path "$ISABELLE_CLASSPATH")"
export JAVA_OPTS="$ISABELLE_JAVA_SYSTEM_OPTIONS -J-Dscala.usejavacp=true"

case "$ISABELLE_PLATFORM_FAMILY" in
  windows*)
    export TERM=dumb
    ;;
esac

isabelle_scala scala $ISABELLE_SCALAC_OPTIONS "$@"