author | blanchet |
Thu, 16 May 2013 14:27:43 +0200 | |
changeset 52033 | 047bb4a9466c |
parent 51977 | b55f90655328 |
child 52052 | 892061142ba6 |
permissions | -rw-r--r-- |
24211 | 1 |
# -*- shell-script -*- :mode=shellscript: |
2294 | 2 |
# |
47173 | 3 |
# Isabelle settings -- distribution defaults. |
16875 | 4 |
# |
5 |
# Important notes: |
|
47173 | 6 |
# * See the "system" manual for explanations on Isabelle settings |
16875 | 7 |
# * DO NOT EDIT the repository copy of this file! |
47173 | 8 |
# * DO NOT COPY this file into your ~/.isabelle directory! |
2309 | 9 |
|
2426 | 10 |
### |
27906 | 11 |
### JVM components (Scala or Java) |
12 |
### |
|
13 |
||
51384 | 14 |
ISABELLE_SCALA_BUILD_OPTIONS="-nowarn -target:jvm-1.5 -Xmax-classfile-name 130" |
47009 | 15 |
|
27906 | 16 |
|
17 |
### |
|
28504
7ad7d7d6df47
simplified main Isabelle executables: removed Isabelle and isabelle (replaced by isabelle-process), renamed isatool to isabelle;
wenzelm
parents:
28474
diff
changeset
|
18 |
### Interactive sessions (cf. isabelle tty) |
25627 | 19 |
### |
20 |
||
21 |
ISABELLE_LINE_EDITOR="" |
|
26205
499f08293680
ISABELLE_LINE_EDITOR: prefer rlwrap, which passes interrupts properly;
wenzelm
parents:
25970
diff
changeset
|
22 |
[ -z "$ISABELLE_LINE_EDITOR" ] && ISABELLE_LINE_EDITOR="$(type -p rlwrap)" |
25627 | 23 |
[ -z "$ISABELLE_LINE_EDITOR" ] && ISABELLE_LINE_EDITOR="$(type -p ledit)" |
24 |
||
25 |
||
26 |
### |
|
48466
3b2fb20df17d
further imitation of ISABELLE_USEDIR_OPTIONS via options;
wenzelm
parents:
48449
diff
changeset
|
27 |
### Batch sessions |
2435 | 28 |
### |
29 |
||
48466
3b2fb20df17d
further imitation of ISABELLE_USEDIR_OPTIONS via options;
wenzelm
parents:
48449
diff
changeset
|
30 |
#cf. isabelle usedir |
32292 | 31 |
ISABELLE_USEDIR_OPTIONS="-M max -p 1 -q 2 -v true -V outline=/proof,/ML" |
11569 | 32 |
|
48466
3b2fb20df17d
further imitation of ISABELLE_USEDIR_OPTIONS via options;
wenzelm
parents:
48449
diff
changeset
|
33 |
#cf. isabelle build |
3b2fb20df17d
further imitation of ISABELLE_USEDIR_OPTIONS via options;
wenzelm
parents:
48449
diff
changeset
|
34 |
ISABELLE_BUILD_OPTIONS="" |
51977
b55f90655328
more generous java resources via ISABELLE_BUILD_JAVA_OPTIONS;
wenzelm
parents:
51940
diff
changeset
|
35 |
ISABELLE_BUILD_JAVA_OPTIONS="-Xmx1024m -Xss1m" |
48466
3b2fb20df17d
further imitation of ISABELLE_USEDIR_OPTIONS via options;
wenzelm
parents:
48449
diff
changeset
|
36 |
|
2435 | 37 |
|
38 |
### |
|
28504
7ad7d7d6df47
simplified main Isabelle executables: removed Isabelle and isabelle (replaced by isabelle-process), renamed isatool to isabelle;
wenzelm
parents:
28474
diff
changeset
|
39 |
### Document preparation (cf. isabelle latex/document) |
7773 | 40 |
### |
41 |
||
42 |
ISABELLE_LATEX="latex" |
|
43 |
ISABELLE_PDFLATEX="pdflatex" |
|
7813 | 44 |
ISABELLE_BIBTEX="bibtex" |
14344 | 45 |
ISABELLE_MAKEINDEX="makeindex" |
7773 | 46 |
ISABELLE_DVIPS="dvips -D 600" |
11800 | 47 |
ISABELLE_EPSTOPDF="epstopdf" |
7773 | 48 |
|
13920 | 49 |
# Paranoia setting for strange latex installations ... |
11062 | 50 |
#unset TEXMF |
51 |
||
7773 | 52 |
|
53 |
### |
|
2968 | 54 |
### Misc path settings |
2426 | 55 |
### |
2294 | 56 |
|
48840 | 57 |
ISABELLE_COMPONENT_REPOSITORY="http://isabelle.in.tum.de/components" |
58 |
||
2426 | 59 |
# The place for user configuration, heap files, etc. |
48553 | 60 |
if [ -z "$ISABELLE_IDENTIFIER" ]; then |
48449 | 61 |
ISABELLE_HOME_USER="$USER_HOME/.isabelle" |
62 |
else |
|
63 |
ISABELLE_HOME_USER="$USER_HOME/.isabelle/$ISABELLE_IDENTIFIER" |
|
64 |
fi |
|
2294 | 65 |
|
3177 | 66 |
# Where to look for isabelle tools (multiple dirs separated by ':'). |
9787
fb8c5a66dbe8
more robust handling of spaces in args / file names;
wenzelm
parents:
9759
diff
changeset
|
67 |
ISABELLE_TOOLS="$ISABELLE_HOME/lib/Tools" |
2786 | 68 |
|
4334 | 69 |
# Location for temporary files (should be on a local file system). |
9787
fb8c5a66dbe8
more robust handling of spaces in args / file names;
wenzelm
parents:
9759
diff
changeset
|
70 |
ISABELLE_TMP_PREFIX="/tmp/isabelle-$USER" |
4334 | 71 |
|
9787
fb8c5a66dbe8
more robust handling of spaces in args / file names;
wenzelm
parents:
9759
diff
changeset
|
72 |
# Heap input locations. ML system identifier is included in lookup. |
40387
e4c9e0dad473
moved ISABELLE_IDENTIFIER from ISABELLE_OUTPUT further up to ISABELLE_HOME_USER;
wenzelm
parents:
37174
diff
changeset
|
73 |
ISABELLE_PATH="$ISABELLE_HOME_USER/heaps:$ISABELLE_HOME/heaps" |
2780 | 74 |
|
9787
fb8c5a66dbe8
more robust handling of spaces in args / file names;
wenzelm
parents:
9759
diff
changeset
|
75 |
# Heap output location. ML system identifier is appended automatically later on. |
40387
e4c9e0dad473
moved ISABELLE_IDENTIFIER from ISABELLE_OUTPUT further up to ISABELLE_HOME_USER;
wenzelm
parents:
37174
diff
changeset
|
76 |
ISABELLE_OUTPUT="$ISABELLE_HOME_USER/heaps" |
26212 | 77 |
ISABELLE_BROWSER_INFO="$ISABELLE_HOME_USER/browser_info" |
2780 | 78 |
|
16186 | 79 |
# Site settings check -- just to make it a little bit harder to copy this file verbatim! |
9225 | 80 |
[ -n "$ISABELLE_SITE_SETTINGS_PRESENT" ] && \ |
81 |
{ echo >&2 "### Isabelle site settings already present! Maybe copied etc/settings in full?"; } |
|
32305
c5523ded51d9
basic support for components (which imitate the usual Isabelle directory layout);
wenzelm
parents:
32292
diff
changeset
|
82 |
ISABELLE_SITE_SETTINGS_PRESENT=true |
9225 | 83 |
|
13920 | 84 |
|
85 |
### |
|
28651 | 86 |
### Default logic |
13920 | 87 |
### |
16186 | 88 |
|
3184 | 89 |
ISABELLE_LOGIC=HOL |
2294 | 90 |
|
2786 | 91 |
|
13920 | 92 |
### |
93 |
### Docs |
|
94 |
### |
|
2294 | 95 |
|
16186 | 96 |
# Where to look for docs (multiple dirs separated by ':'). |
9787
fb8c5a66dbe8
more robust handling of spaces in args / file names;
wenzelm
parents:
9759
diff
changeset
|
97 |
ISABELLE_DOCS="$ISABELLE_HOME/doc" |
2345 | 98 |
|
16186 | 99 |
# Preferred document format |
15703 | 100 |
ISABELLE_DOC_FORMAT=pdf |
101 |
||
50197
b385d134926d
eval PDF_VIEWER/DVI_VIEWER command line, which allows additional quotes for program name, for example;
wenzelm
parents:
49000
diff
changeset
|
102 |
# PDF file viewer (command-line to eval) |
b385d134926d
eval PDF_VIEWER/DVI_VIEWER command line, which allows additional quotes for program name, for example;
wenzelm
parents:
49000
diff
changeset
|
103 |
case "$ISABELLE_PLATFORM_FAMILY" in |
b385d134926d
eval PDF_VIEWER/DVI_VIEWER command line, which allows additional quotes for program name, for example;
wenzelm
parents:
49000
diff
changeset
|
104 |
linux) |
b385d134926d
eval PDF_VIEWER/DVI_VIEWER command line, which allows additional quotes for program name, for example;
wenzelm
parents:
49000
diff
changeset
|
105 |
PDF_VIEWER="xdg-open" |
b385d134926d
eval PDF_VIEWER/DVI_VIEWER command line, which allows additional quotes for program name, for example;
wenzelm
parents:
49000
diff
changeset
|
106 |
;; |
b385d134926d
eval PDF_VIEWER/DVI_VIEWER command line, which allows additional quotes for program name, for example;
wenzelm
parents:
49000
diff
changeset
|
107 |
macos) |
b385d134926d
eval PDF_VIEWER/DVI_VIEWER command line, which allows additional quotes for program name, for example;
wenzelm
parents:
49000
diff
changeset
|
108 |
PDF_VIEWER="open -W -n" |
b385d134926d
eval PDF_VIEWER/DVI_VIEWER command line, which allows additional quotes for program name, for example;
wenzelm
parents:
49000
diff
changeset
|
109 |
;; |
b385d134926d
eval PDF_VIEWER/DVI_VIEWER command line, which allows additional quotes for program name, for example;
wenzelm
parents:
49000
diff
changeset
|
110 |
windows) |
b385d134926d
eval PDF_VIEWER/DVI_VIEWER command line, which allows additional quotes for program name, for example;
wenzelm
parents:
49000
diff
changeset
|
111 |
PDF_VIEWER="cygstart" |
b385d134926d
eval PDF_VIEWER/DVI_VIEWER command line, which allows additional quotes for program name, for example;
wenzelm
parents:
49000
diff
changeset
|
112 |
;; |
b385d134926d
eval PDF_VIEWER/DVI_VIEWER command line, which allows additional quotes for program name, for example;
wenzelm
parents:
49000
diff
changeset
|
113 |
esac |
b385d134926d
eval PDF_VIEWER/DVI_VIEWER command line, which allows additional quotes for program name, for example;
wenzelm
parents:
49000
diff
changeset
|
114 |
|
b385d134926d
eval PDF_VIEWER/DVI_VIEWER command line, which allows additional quotes for program name, for example;
wenzelm
parents:
49000
diff
changeset
|
115 |
# DVI file viewer (command-line to eval) |
3062 | 116 |
DVI_VIEWER=xdvi |
2426 | 117 |
#DVI_VIEWER="xdvi -geometry 498x704 -expert -s 5" |
11103 | 118 |
#DVI_VIEWER="xdvi -geometry 711x1005 -expert -s 7" |
2476 | 119 |
#DVI_VIEWER="xdvi -geometry 500x704 -expert -s 10" |
3062 | 120 |
#DVI_VIEWER="xdvi -geometry 555x782 -expert -s 9" |
2345 | 121 |
|
15218 | 122 |
|
16186 | 123 |
# Printer spool command for PS files |
14933 | 124 |
PRINT_COMMAND=lp |
125 |
||
2294 | 126 |
|
2426 | 127 |
### |
37058
c47653f3ec14
rendering information and style sheets via settings;
wenzelm
parents:
36212
diff
changeset
|
128 |
### Rendering information |
c47653f3ec14
rendering information and style sheets via settings;
wenzelm
parents:
36212
diff
changeset
|
129 |
### |
c47653f3ec14
rendering information and style sheets via settings;
wenzelm
parents:
36212
diff
changeset
|
130 |
|
43484 | 131 |
ISABELLE_FONTS="$ISABELLE_HOME/lib/fonts/IsabelleText.ttf:$ISABELLE_HOME/lib/fonts/IsabelleTextBold.ttf" |
37058
c47653f3ec14
rendering information and style sheets via settings;
wenzelm
parents:
36212
diff
changeset
|
132 |
ISABELLE_SYMBOLS="$ISABELLE_HOME/etc/symbols:$ISABELLE_HOME_USER/etc/symbols" |
c47653f3ec14
rendering information and style sheets via settings;
wenzelm
parents:
36212
diff
changeset
|
133 |
|
c47653f3ec14
rendering information and style sheets via settings;
wenzelm
parents:
36212
diff
changeset
|
134 |
|
c47653f3ec14
rendering information and style sheets via settings;
wenzelm
parents:
36212
diff
changeset
|
135 |
### |
49000 | 136 |
### Misc old-style settings |
7185 | 137 |
### |
138 |
||
49000 | 139 |
# Standard ML of New Jersey (slow!) |
140 |
#ML_SYSTEM=smlnj-110 |
|
141 |
#ML_HOME="/usr/local/smlnj/bin" |
|
142 |
#ML_OPTIONS="@SMLdebug=/dev/null @SMLalloc=1024" |
|
143 |
#ML_PLATFORM=$(eval $("$ML_HOME/.arch-n-opsys" 2>/dev/null); echo "$HEAP_SUFFIX") |
|
144 |
#SMLNJ_CYGWIN_RUNTIME=1 |
|
145 |
||
41968
7f5c9bd991be
example settings for ISABELLE_GHC, ISABELLE_OCAML, ISABELLE_SWIPL;
wenzelm
parents:
41955
diff
changeset
|
146 |
# Misc programming languages |
48187
6615f7ce670b
slightly modernized ISABELLE_GHC etc. -- /usr/bin is more likely to provide it by default (notably on macbroy2[0-9] and lxbroy*);
wenzelm
parents:
47758
diff
changeset
|
147 |
#ISABELLE_GHC="/usr/bin/ghc" |
6615f7ce670b
slightly modernized ISABELLE_GHC etc. -- /usr/bin is more likely to provide it by default (notably on macbroy2[0-9] and lxbroy*);
wenzelm
parents:
47758
diff
changeset
|
148 |
#ISABELLE_OCAML="/usr/bin/ocaml" |
6615f7ce670b
slightly modernized ISABELLE_GHC etc. -- /usr/bin is more likely to provide it by default (notably on macbroy2[0-9] and lxbroy*);
wenzelm
parents:
47758
diff
changeset
|
149 |
#ISABELLE_SWIPL="/usr/bin/swipl" |