author | wenzelm |
Wed, 17 Oct 2018 20:06:19 +0200 | |
changeset 69147 | 6f4d561ea621 |
parent 69135 | be20f5f6feb9 |
child 69151 | b310bc57f55f |
permissions | -rw-r--r-- |
24211 | 1 |
# -*- shell-script -*- :mode=shellscript: |
2294 | 2 |
# |
54937 | 3 |
# Isabelle system settings. |
16875 | 4 |
# |
5 |
# Important notes: |
|
47173 | 6 |
# * See the "system" manual for explanations on Isabelle settings |
54937 | 7 |
# * User settings go into $ISABELLE_HOME_USER/etc/settings |
16875 | 8 |
# * DO NOT EDIT the repository copy of this file! |
54937 | 9 |
# * DO NOT COPY this file into the $ISABELLE_HOME_USER directory! |
2309 | 10 |
|
2426 | 11 |
### |
52790 | 12 |
### Isabelle/Scala |
27906 | 13 |
### |
14 |
||
65531 | 15 |
ISABELLE_SCALAC_OPTIONS="-encoding UTF-8 -nowarn -target:jvm-1.8 -Xmax-classfile-name 130 -J-Xms128m -J-Xmx1024m -J-Xss2m" |
47009 | 16 |
|
69129 | 17 |
ISABELLE_JAVA_SYSTEM_OPTIONS="-server -Dfile.encoding=UTF-8 -Disabelle.threads=0 -Djdk.gtk.version=2.2" |
53346
26c795734b3c
provide ISABELLE_JAVA_SYSTEM_OPTIONS via settings;
wenzelm
parents:
52790
diff
changeset
|
18 |
|
67762
8b61174a3aa2
more Java heap, e.g. relevant for hg.graph on Isabelle repository;
wenzelm
parents:
67588
diff
changeset
|
19 |
ISABELLE_TOOL_JAVA_OPTIONS="-Djava.awt.headless=true -Xms512m -Xmx2560m -Xss16m" |
62840
d9744f41a4ec
renamed ISABELLE_BUILD_JAVA_OPTIONS to ISABELLE_TOOL_JAVA_OPTIONS;
wenzelm
parents:
62562
diff
changeset
|
20 |
|
53577 | 21 |
classpath "$ISABELLE_HOME/lib/classes/Pure.jar" |
53576
793a429c63e7
maintain classpath in more elementary manner: turn ISABELLE_CLASSPATH into -classpath option, so that all jars are covered by sun.misc.Launcher.AppClassLoader (e.g. relevant for loading add-on resources);
wenzelm
parents:
53346
diff
changeset
|
22 |
|
60200
02fd729f2883
more paranoia settings, e.g. relevant for Ubuntu 15.04;
wenzelm
parents:
59565
diff
changeset
|
23 |
#paranoia settings -- avoid intrusion of alien options |
02fd729f2883
more paranoia settings, e.g. relevant for Ubuntu 15.04;
wenzelm
parents:
59565
diff
changeset
|
24 |
unset "_JAVA_OPTIONS" |
02fd729f2883
more paranoia settings, e.g. relevant for Ubuntu 15.04;
wenzelm
parents:
59565
diff
changeset
|
25 |
unset "JAVA_TOOL_OPTIONS" |
02fd729f2883
more paranoia settings, e.g. relevant for Ubuntu 15.04;
wenzelm
parents:
59565
diff
changeset
|
26 |
|
02fd729f2883
more paranoia settings, e.g. relevant for Ubuntu 15.04;
wenzelm
parents:
59565
diff
changeset
|
27 |
#paranoia settings -- avoid problems of Java/Swing versus XIM/IBus etc. |
54037
ab77ec347220
unset XMODIFIERS by default, in order to prevent total loss of key events seen on Fedora 18/19;
wenzelm
parents:
53577
diff
changeset
|
28 |
unset XMODIFIERS |
ab77ec347220
unset XMODIFIERS by default, in order to prevent total loss of key events seen on Fedora 18/19;
wenzelm
parents:
53577
diff
changeset
|
29 |
|
27906 | 30 |
|
31 |
### |
|
62562
905a5db3932d
back to external line editor, due to problems of JLine with multithreading of in vs. out;
wenzelm
parents:
62559
diff
changeset
|
32 |
### Interactive sessions (cf. isabelle console) |
905a5db3932d
back to external line editor, due to problems of JLine with multithreading of in vs. out;
wenzelm
parents:
62559
diff
changeset
|
33 |
### |
905a5db3932d
back to external line editor, due to problems of JLine with multithreading of in vs. out;
wenzelm
parents:
62559
diff
changeset
|
34 |
|
905a5db3932d
back to external line editor, due to problems of JLine with multithreading of in vs. out;
wenzelm
parents:
62559
diff
changeset
|
35 |
ISABELLE_LINE_EDITOR="rlwrap" |
905a5db3932d
back to external line editor, due to problems of JLine with multithreading of in vs. out;
wenzelm
parents:
62559
diff
changeset
|
36 |
|
905a5db3932d
back to external line editor, due to problems of JLine with multithreading of in vs. out;
wenzelm
parents:
62559
diff
changeset
|
37 |
|
905a5db3932d
back to external line editor, due to problems of JLine with multithreading of in vs. out;
wenzelm
parents:
62559
diff
changeset
|
38 |
### |
52052
892061142ba6
discontinued obsolete isabelle usedir, mkdir, make;
wenzelm
parents:
51977
diff
changeset
|
39 |
### Batch sessions (cf. isabelle build) |
2435 | 40 |
### |
41 |
||
48466
3b2fb20df17d
further imitation of ISABELLE_USEDIR_OPTIONS via options;
wenzelm
parents:
48449
diff
changeset
|
42 |
ISABELLE_BUILD_OPTIONS="" |
61131 | 43 |
|
2435 | 44 |
|
45 |
### |
|
28504
7ad7d7d6df47
simplified main Isabelle executables: removed Isabelle and isabelle (replaced by isabelle-process), renamed isatool to isabelle;
wenzelm
parents:
28474
diff
changeset
|
46 |
### Document preparation (cf. isabelle latex/document) |
7773 | 47 |
### |
48 |
||
67173 | 49 |
ISABELLE_LATEX="latex -file-line-error" |
50 |
ISABELLE_PDFLATEX="pdflatex -file-line-error" |
|
7813 | 51 |
ISABELLE_BIBTEX="bibtex" |
14344 | 52 |
ISABELLE_MAKEINDEX="makeindex" |
11800 | 53 |
ISABELLE_EPSTOPDF="epstopdf" |
7773 | 54 |
|
67173 | 55 |
if [ "$ISABELLE_PLATFORM_FAMILY" = "windows" ]; then |
56 |
ISABELLE_LATEX="latex -c-style-errors" |
|
57 |
ISABELLE_PDFLATEX="pdflatex -c-style-errors" |
|
58 |
fi |
|
59 |
||
7773 | 60 |
|
61 |
### |
|
2968 | 62 |
### Misc path settings |
2426 | 63 |
### |
2294 | 64 |
|
63491 | 65 |
ISABELLE_COMPONENT_REPOSITORY="https://isabelle.in.tum.de/components" |
48840 | 66 |
|
2426 | 67 |
# The place for user configuration, heap files, etc. |
48553 | 68 |
if [ -z "$ISABELLE_IDENTIFIER" ]; then |
48449 | 69 |
ISABELLE_HOME_USER="$USER_HOME/.isabelle" |
70 |
else |
|
71 |
ISABELLE_HOME_USER="$USER_HOME/.isabelle/$ISABELLE_IDENTIFIER" |
|
72 |
fi |
|
2294 | 73 |
|
3177 | 74 |
# 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
|
75 |
ISABELLE_TOOLS="$ISABELLE_HOME/lib/Tools" |
2786 | 76 |
|
4334 | 77 |
# Location for temporary files (should be on a local file system). |
58639
1df53737c59b
prefer Unix standard-conformant $TMPDIR over hard-wired /tmp;
wenzelm
parents:
57451
diff
changeset
|
78 |
ISABELLE_TMP_PREFIX="${TMPDIR:-/tmp}/isabelle-$USER" |
4334 | 79 |
|
68523
ccacc84e0251
clarified settings -- avoid hard-wired directories;
wenzelm
parents:
68384
diff
changeset
|
80 |
# Heap locations. |
ccacc84e0251
clarified settings -- avoid hard-wired directories;
wenzelm
parents:
68384
diff
changeset
|
81 |
ISABELLE_HEAPS="$ISABELLE_HOME_USER/heaps" |
ccacc84e0251
clarified settings -- avoid hard-wired directories;
wenzelm
parents:
68384
diff
changeset
|
82 |
ISABELLE_HEAPS_SYSTEM="$ISABELLE_HOME/heaps" |
ccacc84e0251
clarified settings -- avoid hard-wired directories;
wenzelm
parents:
68384
diff
changeset
|
83 |
|
68219 | 84 |
# HTML browser info. |
26212 | 85 |
ISABELLE_BROWSER_INFO="$ISABELLE_HOME_USER/browser_info" |
68523
ccacc84e0251
clarified settings -- avoid hard-wired directories;
wenzelm
parents:
68384
diff
changeset
|
86 |
ISABELLE_BROWSER_INFO_SYSTEM="$ISABELLE_HOME/browser_info" |
2780 | 87 |
|
16186 | 88 |
# Site settings check -- just to make it a little bit harder to copy this file verbatim! |
9225 | 89 |
[ -n "$ISABELLE_SITE_SETTINGS_PRESENT" ] && \ |
90 |
{ 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
|
91 |
ISABELLE_SITE_SETTINGS_PRESENT=true |
9225 | 92 |
|
13920 | 93 |
|
94 |
### |
|
28651 | 95 |
### Default logic |
13920 | 96 |
### |
16186 | 97 |
|
3184 | 98 |
ISABELLE_LOGIC=HOL |
2294 | 99 |
|
2786 | 100 |
|
13920 | 101 |
### |
102 |
### Docs |
|
103 |
### |
|
2294 | 104 |
|
16186 | 105 |
# 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
|
106 |
ISABELLE_DOCS="$ISABELLE_HOME/doc" |
2345 | 107 |
|
57451 | 108 |
ISABELLE_DOCS_RELEASE_NOTES="ANNOUNCE:README:NEWS:COPYRIGHT:CONTRIBUTORS:contrib/README:src/Tools/jEdit/README:README_REPOSITORY" |
67588 | 109 |
ISABELLE_DOCS_EXAMPLES="src/HOL/ex/Seq.thy:src/HOL/ex/ML.thy:src/HOL/Unix/Unix.thy:src/HOL/Isar_Examples/Drinker.thy:src/Tools/SML/Examples.thy:src/Pure/ROOT.ML" |
56424
7032378cc097
proper settings instead of hard-wired information;
wenzelm
parents:
54937
diff
changeset
|
110 |
|
54685 | 111 |
# "open" within desktop environment (potentially asynchronous) |
50197
b385d134926d
eval PDF_VIEWER/DVI_VIEWER command line, which allows additional quotes for program name, for example;
wenzelm
parents:
49000
diff
changeset
|
112 |
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
|
113 |
linux) |
54685 | 114 |
ISABELLE_OPEN="xdg-open" |
50197
b385d134926d
eval PDF_VIEWER/DVI_VIEWER command line, which allows additional quotes for program name, for example;
wenzelm
parents:
49000
diff
changeset
|
115 |
;; |
b385d134926d
eval PDF_VIEWER/DVI_VIEWER command line, which allows additional quotes for program name, for example;
wenzelm
parents:
49000
diff
changeset
|
116 |
macos) |
54685 | 117 |
ISABELLE_OPEN="open" |
50197
b385d134926d
eval PDF_VIEWER/DVI_VIEWER command line, which allows additional quotes for program name, for example;
wenzelm
parents:
49000
diff
changeset
|
118 |
;; |
b385d134926d
eval PDF_VIEWER/DVI_VIEWER command line, which allows additional quotes for program name, for example;
wenzelm
parents:
49000
diff
changeset
|
119 |
windows) |
54685 | 120 |
ISABELLE_OPEN="cygstart" |
50197
b385d134926d
eval PDF_VIEWER/DVI_VIEWER command line, which allows additional quotes for program name, for example;
wenzelm
parents:
49000
diff
changeset
|
121 |
;; |
b385d134926d
eval PDF_VIEWER/DVI_VIEWER command line, which allows additional quotes for program name, for example;
wenzelm
parents:
49000
diff
changeset
|
122 |
esac |
b385d134926d
eval PDF_VIEWER/DVI_VIEWER command line, which allows additional quotes for program name, for example;
wenzelm
parents:
49000
diff
changeset
|
123 |
|
54685 | 124 |
PDF_VIEWER="$ISABELLE_OPEN" |
125 |
DVI_VIEWER="$ISABELLE_OPEN" |
|
2345 | 126 |
|
15218 | 127 |
|
2426 | 128 |
### |
63871 | 129 |
### Symbol rendering |
37058
c47653f3ec14
rendering information and style sheets via settings;
wenzelm
parents:
36212
diff
changeset
|
130 |
### |
c47653f3ec14
rendering information and style sheets via settings;
wenzelm
parents:
36212
diff
changeset
|
131 |
|
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 |
### |
69134 | 136 |
### OCaml |
137 |
### |
|
138 |
||
139 |
ISABELLE_OPAM_ROOT="$ISABELLE_HOME_USER/opam" |
|
140 |
||
69135 | 141 |
ISABELLE_OCAML_VERSION="4.05.0" |
142 |
||
69134 | 143 |
|
144 |
### |
|
69147 | 145 |
### Haskell |
146 |
### |
|
147 |
||
148 |
ISABELLE_STACK_ROOT="$ISABELLE_HOME_USER/stack" |
|
149 |
||
150 |
||
151 |
### |
|
62354 | 152 |
### Misc settings |
7185 | 153 |
### |
154 |
||
63688
cc57255bf6ae
gnuplot presentation similar to former isatest-statistics;
wenzelm
parents:
63491
diff
changeset
|
155 |
ISABELLE_GNUPLOT="gnuplot" |
cc57255bf6ae
gnuplot presentation similar to former isatest-statistics;
wenzelm
parents:
63491
diff
changeset
|
156 |
|
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
|
157 |
#ISABELLE_GHC="/usr/bin/ghc" |
68384
4a3fc3420747
full benchmarks, including all conditional theories;
wenzelm
parents:
68219
diff
changeset
|
158 |
#ISABELLE_MLTON="/usr/bin/mlton" |
4a3fc3420747
full benchmarks, including all conditional theories;
wenzelm
parents:
68219
diff
changeset
|
159 |
#ISABELLE_SMLNJ="/usr/bin/sml" |
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
|
160 |
#ISABELLE_SWIPL="/usr/bin/swipl" |