author | wenzelm |
Thu, 10 Aug 2000 00:45:23 +0200 | |
changeset 9569 | 68400ff46b09 |
parent 9252 | 83060e826e02 |
child 9679 | 6dca83af209b |
permissions | -rw-r--r-- |
2294 | 1 |
# |
2 |
# $Id$ |
|
3 |
# |
|
2309 | 4 |
# Isabelle settings -- site defaults. |
9225 | 5 |
# Do *NOT* copy this file into your personal isabelle directory!!! |
2309 | 6 |
|
2426 | 7 |
### |
3177 | 8 |
### ML compiler settings (ESSENTIAL!) |
2426 | 9 |
### |
10 |
||
9236 | 11 |
## Uncomment and adapt one of the sections below. |
12 |
||
13 |
# Note that ML_HOME specifies the location of the actual compiler |
|
14 |
# binaries. Do not invent new ML system names unless you know what |
|
15 |
# you are doing. |
|
2426 | 16 |
|
8345 | 17 |
# Poly/ML 3.x |
18 |
POLYML_HOME=$ISABELLE_HOME/../polyml |
|
19 |
ML_PLATFORM=$($POLYML_HOME/bin/polyml-platform 2>/dev/null) |
|
20 |
ML_HOME=$POLYML_HOME/$ML_PLATFORM |
|
21 |
ML_SYSTEM=polyml-3.x |
|
22 |
ML_OPTIONS="-h 30000" |
|
23 |
||
5708 | 24 |
# Standard ML of New Jersey 110 or later |
8345 | 25 |
#ML_SYSTEM=smlnj-110 |
26 |
#ML_HOME=$ISABELLE_HOME/../smlnj/bin |
|
27 |
#ML_OPTIONS="@SMLdebug=/dev/null" |
|
28 |
#ML_PLATFORM=$(eval $($ML_HOME/.arch-n-opsys 2>/dev/null); echo $HEAP_SUFFIX) |
|
5708 | 29 |
|
9252 | 30 |
# Moscow ML 2.00 or later (experimental!) |
31 |
#ML_SYSTEM=mosml |
|
32 |
#ML_HOME=$ISABELLE_HOME/../mosml/bin |
|
6413 | 33 |
#ML_PLATFORM="" |
9252 | 34 |
#ML_OPTIONS="" |
5708 | 35 |
|
9252 | 36 |
# MLWorks 2.0 |
37 |
#ML_SYSTEM=mlworks |
|
38 |
#ML_HOME=$ISABELLE_HOME/../mlworks/bin |
|
39 |
#ML_OPTIONS="" |
|
6413 | 40 |
#ML_PLATFORM="" |
2294 | 41 |
|
2426 | 42 |
# Standard ML of New Jersey 0.93 |
43 |
#ML_SYSTEM=smlnj-0.93 |
|
44 |
#ML_HOME=/usr/local/ldist/DIR/sml-0.93/src |
|
45 |
#ML_OPTIONS="" |
|
6413 | 46 |
#ML_PLATFORM="" |
2426 | 47 |
|
2294 | 48 |
|
2426 | 49 |
### |
3177 | 50 |
### Compilation options |
2435 | 51 |
### |
52 |
||
5387 | 53 |
ISABELLE_USEDIR_OPTIONS="-i false" |
7762
c98d70538033
ISABELLE_USEDIR_OPTIONS: -d pdf option (off by default);
wenzelm
parents:
7296
diff
changeset
|
54 |
#ISABELLE_USEDIR_OPTIONS="-i true -d pdf" |
2435 | 55 |
|
56 |
||
57 |
### |
|
7773 | 58 |
### Document preparation |
59 |
### |
|
60 |
||
61 |
TEXINPUTS="$ISABELLE_HOME/lib/texinputs:$TEXINPUTS" |
|
62 |
ISABELLE_LATEX="latex" |
|
63 |
ISABELLE_PDFLATEX="pdflatex" |
|
7813 | 64 |
ISABELLE_BIBTEX="bibtex" |
7773 | 65 |
ISABELLE_DVIPS="dvips -D 600" |
66 |
||
7873 | 67 |
# The thumbpdf tool is probably not generally available ... |
7864 | 68 |
#ISABELLE_THUMBPDF="thumbpdf" |
69 |
||
7773 | 70 |
|
71 |
### |
|
2968 | 72 |
### Misc path settings |
2426 | 73 |
### |
2294 | 74 |
|
2426 | 75 |
# The place for user configuration, heap files, etc. |
76 |
ISABELLE_HOME_USER=~/isabelle |
|
2294 | 77 |
|
3177 | 78 |
# Where to look for isabelle tools (multiple dirs separated by ':'). |
2786 | 79 |
ISABELLE_TOOLS=$ISABELLE_HOME/lib/Tools |
80 |
||
4334 | 81 |
# Location for temporary files (should be on a local file system). |
4708 | 82 |
ISABELLE_TMP_PREFIX=/tmp/isabelle-$USER |
4334 | 83 |
|
2786 | 84 |
|
3118 | 85 |
# Heap file locations. ML system identifier appended automatically! |
2786 | 86 |
|
3118 | 87 |
ISABELLE_PATH=$ISABELLE_HOME_USER/heaps:$ISABELLE_HOME/heaps |
2780 | 88 |
|
4413 | 89 |
#A hack! Isabelle build tells us to store heaps etc. within the |
90 |
#distribution. |
|
2780 | 91 |
if [ "$THIS_IS_ISABELLE_BUILD" = true ]; then |
3118 | 92 |
ISABELLE_OUTPUT=$ISABELLE_HOME/heaps |
3637
02ba2acc69c3
Added new environment variable ISABELLE_BROWSER_INFO.
berghofe
parents:
3596
diff
changeset
|
93 |
ISABELLE_BROWSER_INFO=$ISABELLE_HOME/browser_info |
2780 | 94 |
else |
3118 | 95 |
ISABELLE_OUTPUT=$ISABELLE_HOME_USER/heaps |
3637
02ba2acc69c3
Added new environment variable ISABELLE_BROWSER_INFO.
berghofe
parents:
3596
diff
changeset
|
96 |
ISABELLE_BROWSER_INFO=$ISABELLE_HOME_USER/browser_info |
2780 | 97 |
fi |
98 |
||
9225 | 99 |
# Site settings check -- just to make it a little bit harder to copy this file! |
100 |
[ -n "$ISABELLE_SITE_SETTINGS_PRESENT" ] && \ |
|
101 |
{ echo >&2 "### Isabelle site settings already present! Maybe copied etc/settings in full?"; } |
|
102 |
||
3177 | 103 |
#Users may want to change this. |
3184 | 104 |
ISABELLE_LOGIC=HOL |
2294 | 105 |
|
2786 | 106 |
|
107 |
## Docs |
|
2294 | 108 |
|
3177 | 109 |
#Where to look for docs (multiple dirs separated by ':'). |
2345 | 110 |
ISABELLE_DOCS=$ISABELLE_HOME/doc |
111 |
||
3177 | 112 |
#The dvi file viewer |
3062 | 113 |
DVI_VIEWER=xdvi |
2426 | 114 |
#DVI_VIEWER="xdvi -geometry 498x704 -expert -s 5" |
2476 | 115 |
#DVI_VIEWER="xdvi -geometry 500x704 -expert -s 10" |
3062 | 116 |
#DVI_VIEWER="xdvi -geometry 555x782 -expert -s 9" |
2345 | 117 |
|
2294 | 118 |
|
3158 | 119 |
## Fonts -- how to install the Isabelle X11 fonts (can be tricky!). |
120 |
||
121 |
# (1) Get fonts from local (client side) directory: |
|
2577 | 122 |
ISABELLE_INSTALLFONTS="xset fp+ $ISABELLE_HOME/lib/fonts; xset fp rehash" |
3158 | 123 |
|
3689 | 124 |
# (2) Get from font server at Munich or Cambridge: |
3256 | 125 |
#ISABELLE_INSTALLFONTS="xset fp+ tcp/isafonts.informatik.tu-muenchen.de:7200" |
3689 | 126 |
#ISABELLE_INSTALLFONTS="xset fp+ tcp/font-serv.cl.cam.ac.uk:7100" |
2577 | 127 |
|
5964 | 128 |
|
2426 | 129 |
### |
130 |
### Interfaces |
|
131 |
### |
|
132 |
||
133 |
# The null interface: pass-through to 'isabelle'. |
|
2294 | 134 |
#ISABELLE_INTERFACE=none |
135 |
||
2786 | 136 |
# Simple xterm based interface. |
2294 | 137 |
ISABELLE_INTERFACE=xterm |
5964 | 138 |
ISABELLE_XTERM_OPTIONS="" |
2968 | 139 |
|
3303 | 140 |
# Emacs running Isamode. |
2968 | 141 |
#ISABELLE_INTERFACE=emacs |
2969 | 142 |
ISAMODE_HOME=$ISABELLE_HOME/contrib/Isamode |
5964 | 143 |
ISAMODE_OPTIONS="" |
144 |
||
9236 | 145 |
# Proof General -- make default if found in canonical place |
8880
3a5215883047
Proof General -- if present make this the default;
wenzelm
parents:
8345
diff
changeset
|
146 |
if [ -d "$ISABELLE_HOME/contrib/ProofGeneral" ]; then |
9236 | 147 |
ISABELLE_INTERFACE="$ISABELLE_HOME/contrib/ProofGeneral/isar/interface" |
148 |
elif [ -d "$ISABELLE_HOME/../ProofGeneral" ]; then |
|
149 |
ISABELLE_INTERFACE="$ISABELLE_HOME/../ProofGeneral/isar/interface" |
|
8880
3a5215883047
Proof General -- if present make this the default;
wenzelm
parents:
8345
diff
changeset
|
150 |
fi |
5964 | 151 |
PROOFGENERAL_OPTIONS="" |
7185 | 152 |
|
9569 | 153 |
# X-Symbol mode -- look in canonical place |
154 |
if [ -d "$ISABELLE_HOME/contrib/x-symbol" ]; then |
|
155 |
XSYMBOL_HOME="$ISABELLE_HOME/contrib/x-symbol" |
|
156 |
fi |
|
157 |
||
7185 | 158 |
|
159 |
### |
|
160 |
### External reasoning tools |
|
161 |
### |
|
162 |
||
7194 | 163 |
## Set HOME only for tools you have installed! |
7185 | 164 |
|
165 |
# SVC (Stanford Validity Checker) |
|
166 |
#SVC_HOME= |
|
167 |
#SVC_MACHINE=i386-redhat-linux |
|
168 |
#SVC_MACHINE=sparc-sun-solaris |
|
7296 | 169 |
|
170 |
# Mucke (mu-calculus model checker) |
|
171 |
#MUCKE_HOME=/usr/local/bin |
|
172 |
||
173 |
# Einhoven model checker |
|
174 |
#EINDHOVEN_HOME=/usr/local/bin |