equal
deleted
inserted
replaced
1 # -*- shell-script -*- |
|
2 |
|
3 POLYML_HOME="/usr/proj/polyml/polyml-5.1-test" |
|
4 ML_SYSTEM="polyml-5.1" |
|
5 ML_PLATFORM="x86-darwin" |
|
6 ML_HOME="$POLYML_HOME/$ML_PLATFORM" |
|
7 ML_OPTIONS="-H 500" |
|
8 |
|
9 |
|
10 ISABELLE_HOME_USER=~/isabelle-at-mac-poly-e |
|
11 |
|
12 # Where to look for isabelle tools (multiple dirs separated by ':'). |
|
13 ISABELLE_TOOLS="$ISABELLE_HOME/lib/Tools" |
|
14 |
|
15 # Location for temporary files (should be on a local file system). |
|
16 ISABELLE_TMP_PREFIX="/tmp/isabelle-$USER" |
|
17 |
|
18 |
|
19 # Heap input locations. ML system identifier is included in lookup. |
|
20 ISABELLE_PATH="$ISABELLE_HOME_USER/heaps:$ISABELLE_HOME/heaps" |
|
21 |
|
22 # Heap output location. ML system identifier is appended automatically later on. |
|
23 if [ "$THIS_IS_ISABELLE_BUILD" = true ]; then |
|
24 #Isabelle build tells us to store heaps etc. within the distribution. |
|
25 ISABELLE_OUTPUT="$ISABELLE_HOME/heaps" |
|
26 ISABELLE_BROWSER_INFO="$ISABELLE_HOME/browser_info" |
|
27 else |
|
28 ISABELLE_OUTPUT="$ISABELLE_HOME_USER/heaps" |
|
29 ISABELLE_BROWSER_INFO="$ISABELLE_HOME_USER/browser_info" |
|
30 fi |
|
31 |
|
32 ISABELLE_USEDIR_OPTIONS="-i true -d pdf -v true -g false -M 4" |
|
33 |
|
34 HOL_USEDIR_OPTIONS="-p 2" |
|