| author | wenzelm | 
| Sat, 27 Jul 2013 22:44:04 +0200 | |
| changeset 52748 | 8e398d9bedf3 | 
| parent 52443 | 725916b7dee5 | 
| child 53576 | 793a429c63e7 | 
| permissions | -rwxr-xr-x | 
| 44950 | 1 | #!/usr/bin/env bash | 
| 2 | # | |
| 3 | # Author: Makarius | |
| 4 | # | |
| 5 | # DESCRIPTION: invoke Scala compiler within the Isabelle environment | |
| 6 | ||
| 52443 | 7 | isabelle_admin_build jars || exit $? | 
| 44950 | 8 | |
| 9 | CLASSPATH="$(jvmpath "$CLASSPATH")" | |
| 47115 
1a05adae1cc9
more robust command invocation via ISABELLE_JDK_HOME or SCALA_HOME (NB: bash exec requires genuine executable, not function);
 wenzelm parents: 
45385diff
changeset | 10 | isabelle_scala scalac -Dfile.encoding=UTF-8 \ | 
| 48915 
34fac6fb9b03
simplified JVM startup, based on stronger assumptions about the Java version provided as Isabelle component;
 wenzelm parents: 
47748diff
changeset | 11 | "-Djava.ext.dirs=$(jvmpath "$ISABELLE_JAVA_EXT:$ISABELLE_HOME/lib/classes/ext")" "$@" | 
| 
34fac6fb9b03
simplified JVM startup, based on stronger assumptions about the Java version provided as Isabelle component;
 wenzelm parents: 
47748diff
changeset | 12 |