lib/Tools/scala
author wenzelm
Thu, 23 Jun 2011 16:10:22 +0200
changeset 43521 d477b92109b8
parent 41622 ad5474a8374b
child 45385 7c1375ba1424
permissions -rwxr-xr-x
provide Isabelle/Scala environment as Java extension, instead of user classpath (which is subject to adhoc changes);

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

[ -z "$SCALA_HOME" ] && { echo "Unknown SCALA_HOME -- Scala unavailable"; exit 2; }

[ -e "$ISABELLE_HOME/Admin/build" ] && { "$ISABELLE_HOME/Admin/build" jars || exit $?; }

CLASSPATH="$(jvmpath "$CLASSPATH")"
exec "$SCALA_HOME/bin/scala" -Dfile.encoding=UTF-8 \
  "-Djava.ext.dirs=$("$ISABELLE_HOME/lib/scripts/java_ext_dirs")" "$@"