author | blanchet |
Wed, 07 Sep 2011 21:31:21 +0200 | |
changeset 44816 | efa1f532508b |
parent 43540 | 71aba8ee3b8f |
child 44861 | 329ced2615eb |
permissions | -rwxr-xr-x |
31919 | 1 |
#!/usr/bin/env bash |
2 |
# |
|
3 |
# Author: Makarius |
|
4 |
# |
|
5 |
# Generic Isabelle application wrapper. |
|
6 |
||
7 |
if [ -L "$0" ]; then |
|
8 |
TARGET="$(LC_ALL=C ls -l "$0" | sed 's/.* -> //')" |
|
9 |
exec "$(cd "$(dirname "$0")"; cd "$(pwd -P)"; cd "$(dirname "$TARGET")"; pwd)/$(basename "$TARGET")" "$@" |
|
10 |
fi |
|
11 |
||
12 |
||
13 |
## settings |
|
14 |
||
15 |
ISABELLE_HOME="$(cd "$(dirname "$0")"; pwd -P)" |
|
16 |
source "$ISABELLE_HOME/lib/scripts/getsettings" || exit 2 |
|
17 |
||
31922 | 18 |
unset ISABELLE_SETTINGS_PRESENT |
34282
549969a7f582
simplified build/bootstrap of Isabelle/Scala components -- avoid make;
wenzelm
parents:
31922
diff
changeset
|
19 |
unset ISABELLE_SITE_SETTINGS_PRESENT |
31922 | 20 |
|
31919 | 21 |
|
22 |
## main |
|
23 |
||
34282
549969a7f582
simplified build/bootstrap of Isabelle/Scala components -- avoid make;
wenzelm
parents:
31922
diff
changeset
|
24 |
[ -e "$ISABELLE_HOME/Admin/build" ] && "$ISABELLE_HOME/Admin/build" jars |
549969a7f582
simplified build/bootstrap of Isabelle/Scala components -- avoid make;
wenzelm
parents:
31922
diff
changeset
|
25 |
|
40571 | 26 |
exec "$ISABELLE_TOOL" java \ |
31920 | 27 |
"-Disabelle.home=$(jvmpath "$ISABELLE_HOME")" \ |
43521
d477b92109b8
provide Isabelle/Scala environment as Java extension, instead of user classpath
wenzelm
parents:
40571
diff
changeset
|
28 |
isabelle.GUI_Setup "$@" |