author | wenzelm |
Sat, 17 Aug 2013 11:34:50 +0200 | |
changeset 53047 | 8dceafa07c4f |
parent 52790 | 6150cf05f729 |
child 53346 | 26c795734b3c |
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 |
### |
52790 | 11 |
### Isabelle/Scala |
27906 | 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 |
### |
|
52052
892061142ba6
discontinued obsolete isabelle usedir, mkdir, make;
wenzelm
parents:
51977
diff
changeset
|
27 |
### Batch sessions (cf. isabelle build) |
2435 | 28 |
### |
29 |
||
48466
3b2fb20df17d
further imitation of ISABELLE_USEDIR_OPTIONS via options;
wenzelm
parents:
48449
diff
changeset
|
30 |
ISABELLE_BUILD_OPTIONS="" |
51977
b55f90655328
more generous java resources via ISABELLE_BUILD_JAVA_OPTIONS;
wenzelm
parents:
51940
diff
changeset
|
31 |
ISABELLE_BUILD_JAVA_OPTIONS="-Xmx1024m -Xss1m" |
48466
3b2fb20df17d
further imitation of ISABELLE_USEDIR_OPTIONS via options;
wenzelm
parents:
48449
diff
changeset
|
32 |
|
2435 | 33 |
|
34 |
### |
|
28504
7ad7d7d6df47
simplified main Isabelle executables: removed Isabelle and isabelle (replaced by isabelle-process), renamed isatool to isabelle;
wenzelm
parents:
28474
diff
changeset
|
35 |
### Document preparation (cf. isabelle latex/document) |
7773 | 36 |
### |
37 |
||
38 |
ISABELLE_LATEX="latex" |
|
39 |
ISABELLE_PDFLATEX="pdflatex" |
|
7813 | 40 |
ISABELLE_BIBTEX="bibtex" |
14344 | 41 |
ISABELLE_MAKEINDEX="makeindex" |
11800 | 42 |
ISABELLE_EPSTOPDF="epstopdf" |
7773 | 43 |
|
44 |
||
45 |
### |
|
2968 | 46 |
### Misc path settings |
2426 | 47 |
### |
2294 | 48 |
|
48840 | 49 |
ISABELLE_COMPONENT_REPOSITORY="http://isabelle.in.tum.de/components" |
50 |
||
2426 | 51 |
# The place for user configuration, heap files, etc. |
48553 | 52 |
if [ -z "$ISABELLE_IDENTIFIER" ]; then |
48449 | 53 |
ISABELLE_HOME_USER="$USER_HOME/.isabelle" |
54 |
else |
|
55 |
ISABELLE_HOME_USER="$USER_HOME/.isabelle/$ISABELLE_IDENTIFIER" |
|
56 |
fi |
|
2294 | 57 |
|
3177 | 58 |
# 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
|
59 |
ISABELLE_TOOLS="$ISABELLE_HOME/lib/Tools" |
2786 | 60 |
|
4334 | 61 |
# 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
|
62 |
ISABELLE_TMP_PREFIX="/tmp/isabelle-$USER" |
4334 | 63 |
|
9787
fb8c5a66dbe8
more robust handling of spaces in args / file names;
wenzelm
parents:
9759
diff
changeset
|
64 |
# 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
|
65 |
ISABELLE_PATH="$ISABELLE_HOME_USER/heaps:$ISABELLE_HOME/heaps" |
2780 | 66 |
|
9787
fb8c5a66dbe8
more robust handling of spaces in args / file names;
wenzelm
parents:
9759
diff
changeset
|
67 |
# 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
|
68 |
ISABELLE_OUTPUT="$ISABELLE_HOME_USER/heaps" |
26212 | 69 |
ISABELLE_BROWSER_INFO="$ISABELLE_HOME_USER/browser_info" |
2780 | 70 |
|
16186 | 71 |
# Site settings check -- just to make it a little bit harder to copy this file verbatim! |
9225 | 72 |
[ -n "$ISABELLE_SITE_SETTINGS_PRESENT" ] && \ |
73 |
{ 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
|
74 |
ISABELLE_SITE_SETTINGS_PRESENT=true |
9225 | 75 |
|
13920 | 76 |
|
77 |
### |
|
28651 | 78 |
### Default logic |
13920 | 79 |
### |
16186 | 80 |
|
3184 | 81 |
ISABELLE_LOGIC=HOL |
2294 | 82 |
|
2786 | 83 |
|
13920 | 84 |
### |
85 |
### Docs |
|
86 |
### |
|
2294 | 87 |
|
16186 | 88 |
# 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
|
89 |
ISABELLE_DOCS="$ISABELLE_HOME/doc" |
2345 | 90 |
|
50197
b385d134926d
eval PDF_VIEWER/DVI_VIEWER command line, which allows additional quotes for program name, for example;
wenzelm
parents:
49000
diff
changeset
|
91 |
# 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
|
92 |
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
|
93 |
linux) |
b385d134926d
eval PDF_VIEWER/DVI_VIEWER command line, which allows additional quotes for program name, for example;
wenzelm
parents:
49000
diff
changeset
|
94 |
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
|
95 |
;; |
b385d134926d
eval PDF_VIEWER/DVI_VIEWER command line, which allows additional quotes for program name, for example;
wenzelm
parents:
49000
diff
changeset
|
96 |
macos) |
52450
e09e1091394d
prefer Safari for viewing PDF files, which appears to be better behaved than Preview concerning re-opening recent files (Mountain Lion);
wenzelm
parents:
52052
diff
changeset
|
97 |
PDF_VIEWER="open -W -n -a Safari" |
50197
b385d134926d
eval PDF_VIEWER/DVI_VIEWER command line, which allows additional quotes for program name, for example;
wenzelm
parents:
49000
diff
changeset
|
98 |
;; |
b385d134926d
eval PDF_VIEWER/DVI_VIEWER command line, which allows additional quotes for program name, for example;
wenzelm
parents:
49000
diff
changeset
|
99 |
windows) |
b385d134926d
eval PDF_VIEWER/DVI_VIEWER command line, which allows additional quotes for program name, for example;
wenzelm
parents:
49000
diff
changeset
|
100 |
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
|
101 |
;; |
b385d134926d
eval PDF_VIEWER/DVI_VIEWER command line, which allows additional quotes for program name, for example;
wenzelm
parents:
49000
diff
changeset
|
102 |
esac |
b385d134926d
eval PDF_VIEWER/DVI_VIEWER command line, which allows additional quotes for program name, for example;
wenzelm
parents:
49000
diff
changeset
|
103 |
|
b385d134926d
eval PDF_VIEWER/DVI_VIEWER command line, which allows additional quotes for program name, for example;
wenzelm
parents:
49000
diff
changeset
|
104 |
# DVI file viewer (command-line to eval) |
3062 | 105 |
DVI_VIEWER=xdvi |
2345 | 106 |
|
15218 | 107 |
|
2426 | 108 |
### |
37058
c47653f3ec14
rendering information and style sheets via settings;
wenzelm
parents:
36212
diff
changeset
|
109 |
### Rendering information |
c47653f3ec14
rendering information and style sheets via settings;
wenzelm
parents:
36212
diff
changeset
|
110 |
### |
c47653f3ec14
rendering information and style sheets via settings;
wenzelm
parents:
36212
diff
changeset
|
111 |
|
43484 | 112 |
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
|
113 |
ISABELLE_SYMBOLS="$ISABELLE_HOME/etc/symbols:$ISABELLE_HOME_USER/etc/symbols" |
c47653f3ec14
rendering information and style sheets via settings;
wenzelm
parents:
36212
diff
changeset
|
114 |
|
c47653f3ec14
rendering information and style sheets via settings;
wenzelm
parents:
36212
diff
changeset
|
115 |
|
c47653f3ec14
rendering information and style sheets via settings;
wenzelm
parents:
36212
diff
changeset
|
116 |
### |
49000 | 117 |
### Misc old-style settings |
7185 | 118 |
### |
119 |
||
49000 | 120 |
# Standard ML of New Jersey (slow!) |
121 |
#ML_SYSTEM=smlnj-110 |
|
122 |
#ML_HOME="/usr/local/smlnj/bin" |
|
123 |
#ML_OPTIONS="@SMLdebug=/dev/null @SMLalloc=1024" |
|
124 |
#ML_PLATFORM=$(eval $("$ML_HOME/.arch-n-opsys" 2>/dev/null); echo "$HEAP_SUFFIX") |
|
125 |
#SMLNJ_CYGWIN_RUNTIME=1 |
|
126 |
||
41968
7f5c9bd991be
example settings for ISABELLE_GHC, ISABELLE_OCAML, ISABELLE_SWIPL;
wenzelm
parents:
41955
diff
changeset
|
127 |
# 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
|
128 |
#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
|
129 |
#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
|
130 |
#ISABELLE_SWIPL="/usr/bin/swipl" |