author | wenzelm |
Sat, 18 Jul 2015 21:25:55 +0200 | |
changeset 60756 | f122140b7195 |
parent 60200 | 02fd729f2883 |
child 61027 | 06ceb6dcdccd |
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 |
||
56665 | 15 |
ISABELLE_SCALA_BUILD_OPTIONS="-encoding UTF-8 -nowarn -target:jvm-1.7 -Xmax-classfile-name 130" |
47009 | 16 |
|
59136
c2b23cb8a677
added Par_List in Scala, in accordance to ML version;
wenzelm
parents:
58639
diff
changeset
|
17 |
ISABELLE_JAVA_SYSTEM_OPTIONS="-server -Dfile.encoding=UTF-8 -Disabelle.threads=0" |
53346
26c795734b3c
provide ISABELLE_JAVA_SYSTEM_OPTIONS via settings;
wenzelm
parents:
52790
diff
changeset
|
18 |
|
53577 | 19 |
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
|
20 |
|
60200
02fd729f2883
more paranoia settings, e.g. relevant for Ubuntu 15.04;
wenzelm
parents:
59565
diff
changeset
|
21 |
#paranoia settings -- avoid intrusion of alien options |
02fd729f2883
more paranoia settings, e.g. relevant for Ubuntu 15.04;
wenzelm
parents:
59565
diff
changeset
|
22 |
unset "_JAVA_OPTIONS" |
02fd729f2883
more paranoia settings, e.g. relevant for Ubuntu 15.04;
wenzelm
parents:
59565
diff
changeset
|
23 |
unset "JAVA_TOOL_OPTIONS" |
02fd729f2883
more paranoia settings, e.g. relevant for Ubuntu 15.04;
wenzelm
parents:
59565
diff
changeset
|
24 |
|
02fd729f2883
more paranoia settings, e.g. relevant for Ubuntu 15.04;
wenzelm
parents:
59565
diff
changeset
|
25 |
#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
|
26 |
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
|
27 |
|
27906 | 28 |
|
29 |
### |
|
57441 | 30 |
### Interactive sessions (cf. isabelle console) |
25627 | 31 |
### |
32 |
||
57439
0e41f26a0250
"isabelle tty" is superseded by "isabelle console";
wenzelm
parents:
56665
diff
changeset
|
33 |
ISABELLE_LINE_EDITOR="rlwrap" |
25627 | 34 |
|
35 |
||
36 |
### |
|
52052
892061142ba6
discontinued obsolete isabelle usedir, mkdir, make;
wenzelm
parents:
51977
diff
changeset
|
37 |
### Batch sessions (cf. isabelle build) |
2435 | 38 |
### |
39 |
||
48466
3b2fb20df17d
further imitation of ISABELLE_USEDIR_OPTIONS via options;
wenzelm
parents:
48449
diff
changeset
|
40 |
ISABELLE_BUILD_OPTIONS="" |
59565
96e860a17b9a
more uniform headless mode for all derivatives of "build" (amending df5dc24ca712);
wenzelm
parents:
59136
diff
changeset
|
41 |
ISABELLE_BUILD_JAVA_OPTIONS="-Djava.awt.headless=true -Xmx1024m -Xss1m" |
48466
3b2fb20df17d
further imitation of ISABELLE_USEDIR_OPTIONS via options;
wenzelm
parents:
48449
diff
changeset
|
42 |
|
2435 | 43 |
|
44 |
### |
|
28504
7ad7d7d6df47
simplified main Isabelle executables: removed Isabelle and isabelle (replaced by isabelle-process), renamed isatool to isabelle;
wenzelm
parents:
28474
diff
changeset
|
45 |
### Document preparation (cf. isabelle latex/document) |
7773 | 46 |
### |
47 |
||
48 |
ISABELLE_LATEX="latex" |
|
49 |
ISABELLE_PDFLATEX="pdflatex" |
|
7813 | 50 |
ISABELLE_BIBTEX="bibtex" |
14344 | 51 |
ISABELLE_MAKEINDEX="makeindex" |
11800 | 52 |
ISABELLE_EPSTOPDF="epstopdf" |
7773 | 53 |
|
54 |
||
55 |
### |
|
2968 | 56 |
### Misc path settings |
2426 | 57 |
### |
2294 | 58 |
|
48840 | 59 |
ISABELLE_COMPONENT_REPOSITORY="http://isabelle.in.tum.de/components" |
60 |
||
2426 | 61 |
# The place for user configuration, heap files, etc. |
48553 | 62 |
if [ -z "$ISABELLE_IDENTIFIER" ]; then |
48449 | 63 |
ISABELLE_HOME_USER="$USER_HOME/.isabelle" |
64 |
else |
|
65 |
ISABELLE_HOME_USER="$USER_HOME/.isabelle/$ISABELLE_IDENTIFIER" |
|
66 |
fi |
|
2294 | 67 |
|
3177 | 68 |
# 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
|
69 |
ISABELLE_TOOLS="$ISABELLE_HOME/lib/Tools" |
2786 | 70 |
|
4334 | 71 |
# 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
|
72 |
ISABELLE_TMP_PREFIX="${TMPDIR:-/tmp}/isabelle-$USER" |
4334 | 73 |
|
9787
fb8c5a66dbe8
more robust handling of spaces in args / file names;
wenzelm
parents:
9759
diff
changeset
|
74 |
# 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
|
75 |
ISABELLE_PATH="$ISABELLE_HOME_USER/heaps:$ISABELLE_HOME/heaps" |
2780 | 76 |
|
9787
fb8c5a66dbe8
more robust handling of spaces in args / file names;
wenzelm
parents:
9759
diff
changeset
|
77 |
# 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
|
78 |
ISABELLE_OUTPUT="$ISABELLE_HOME_USER/heaps" |
26212 | 79 |
ISABELLE_BROWSER_INFO="$ISABELLE_HOME_USER/browser_info" |
2780 | 80 |
|
16186 | 81 |
# Site settings check -- just to make it a little bit harder to copy this file verbatim! |
9225 | 82 |
[ -n "$ISABELLE_SITE_SETTINGS_PRESENT" ] && \ |
83 |
{ 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
|
84 |
ISABELLE_SITE_SETTINGS_PRESENT=true |
9225 | 85 |
|
13920 | 86 |
|
87 |
### |
|
28651 | 88 |
### Default logic |
13920 | 89 |
### |
16186 | 90 |
|
3184 | 91 |
ISABELLE_LOGIC=HOL |
2294 | 92 |
|
2786 | 93 |
|
13920 | 94 |
### |
95 |
### Docs |
|
96 |
### |
|
2294 | 97 |
|
16186 | 98 |
# 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
|
99 |
ISABELLE_DOCS="$ISABELLE_HOME/doc" |
2345 | 100 |
|
57451 | 101 |
ISABELLE_DOCS_RELEASE_NOTES="ANNOUNCE:README:NEWS:COPYRIGHT:CONTRIBUTORS:contrib/README:src/Tools/jEdit/README:README_REPOSITORY" |
56424
7032378cc097
proper settings instead of hard-wired information;
wenzelm
parents:
54937
diff
changeset
|
102 |
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" |
7032378cc097
proper settings instead of hard-wired information;
wenzelm
parents:
54937
diff
changeset
|
103 |
|
54685 | 104 |
# "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
|
105 |
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
|
106 |
linux) |
54685 | 107 |
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
|
108 |
;; |
b385d134926d
eval PDF_VIEWER/DVI_VIEWER command line, which allows additional quotes for program name, for example;
wenzelm
parents:
49000
diff
changeset
|
109 |
macos) |
54685 | 110 |
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
|
111 |
;; |
b385d134926d
eval PDF_VIEWER/DVI_VIEWER command line, which allows additional quotes for program name, for example;
wenzelm
parents:
49000
diff
changeset
|
112 |
windows) |
54685 | 113 |
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
|
114 |
;; |
b385d134926d
eval PDF_VIEWER/DVI_VIEWER command line, which allows additional quotes for program name, for example;
wenzelm
parents:
49000
diff
changeset
|
115 |
esac |
b385d134926d
eval PDF_VIEWER/DVI_VIEWER command line, which allows additional quotes for program name, for example;
wenzelm
parents:
49000
diff
changeset
|
116 |
|
54685 | 117 |
PDF_VIEWER="$ISABELLE_OPEN" |
118 |
DVI_VIEWER="$ISABELLE_OPEN" |
|
2345 | 119 |
|
15218 | 120 |
|
2426 | 121 |
### |
37058
c47653f3ec14
rendering information and style sheets via settings;
wenzelm
parents:
36212
diff
changeset
|
122 |
### Rendering information |
c47653f3ec14
rendering information and style sheets via settings;
wenzelm
parents:
36212
diff
changeset
|
123 |
### |
c47653f3ec14
rendering information and style sheets via settings;
wenzelm
parents:
36212
diff
changeset
|
124 |
|
43484 | 125 |
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
|
126 |
ISABELLE_SYMBOLS="$ISABELLE_HOME/etc/symbols:$ISABELLE_HOME_USER/etc/symbols" |
c47653f3ec14
rendering information and style sheets via settings;
wenzelm
parents:
36212
diff
changeset
|
127 |
|
c47653f3ec14
rendering information and style sheets via settings;
wenzelm
parents:
36212
diff
changeset
|
128 |
|
c47653f3ec14
rendering information and style sheets via settings;
wenzelm
parents:
36212
diff
changeset
|
129 |
### |
49000 | 130 |
### Misc old-style settings |
7185 | 131 |
### |
132 |
||
49000 | 133 |
# Standard ML of New Jersey (slow!) |
134 |
#ML_SYSTEM=smlnj-110 |
|
135 |
#ML_HOME="/usr/local/smlnj/bin" |
|
136 |
#ML_OPTIONS="@SMLdebug=/dev/null @SMLalloc=1024" |
|
137 |
#ML_PLATFORM=$(eval $("$ML_HOME/.arch-n-opsys" 2>/dev/null); echo "$HEAP_SUFFIX") |
|
138 |
#SMLNJ_CYGWIN_RUNTIME=1 |
|
139 |
||
41968
7f5c9bd991be
example settings for ISABELLE_GHC, ISABELLE_OCAML, ISABELLE_SWIPL;
wenzelm
parents:
41955
diff
changeset
|
140 |
# 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
|
141 |
#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
|
142 |
#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
|
143 |
#ISABELLE_SWIPL="/usr/bin/swipl" |