etc/settings
author Walther Neuper <wneuper@ist.tugraz.at>
Thu, 18 Jan 2018 15:27:36 +0100
changeset 59321 553c89152635
parent 59180 85ec71012df8
child 59324 ec559c6ab5ba
permissions -rw-r--r--
intermediate for "store the current working directory"

according to Step 1 in http://www.ist.tugraz.at/isac/Update_Isabelle_version
     1 # -*- shell-script -*- :mode=shellscript:
     2 #
     3 # Isabelle system settings.
     4 #
     5 # Important notes:
     6 #   * See the "system" manual for explanations on Isabelle settings
     7 #   * User settings go into $ISABELLE_HOME_USER/etc/settings
     8 #   * DO NOT EDIT the repository copy of this file!
     9 #   * DO NOT COPY this file into the $ISABELLE_HOME_USER directory!
    10 
    11 ###
    12 ### Isabelle/Scala
    13 ###
    14 
    15 ISABELLE_SCALA_BUILD_OPTIONS="-encoding UTF-8 -nowarn -target:jvm-1.7 -Xmax-classfile-name 130"
    16 
    17 ISABELLE_JAVA_SYSTEM_OPTIONS="-server -Dfile.encoding=UTF-8 -Disabelle.threads=0"
    18 
    19 classpath "$ISABELLE_HOME/lib/classes/Pure.jar"
    20 
    21 #paranoia settings -- avoid intrusion of alien options
    22 unset "_JAVA_OPTIONS"
    23 unset "JAVA_TOOL_OPTIONS"
    24 
    25 #paranoia settings -- avoid problems of Java/Swing versus XIM/IBus etc.
    26 unset XMODIFIERS
    27 
    28 
    29 ###
    30 ### Interactive sessions (cf. isabelle console)
    31 ###
    32 
    33 ISABELLE_LINE_EDITOR="rlwrap"
    34 
    35 
    36 ###
    37 ### Batch sessions (cf. isabelle build)
    38 ###
    39 
    40 ISABELLE_BUILD_OPTIONS=""
    41 ISABELLE_BUILD_JAVA_OPTIONS="-Djava.awt.headless=true -Xmx1024m -Xss1m"
    42 
    43 
    44 ###
    45 ### Document preparation (cf. isabelle latex/document)
    46 ###
    47 
    48 ISABELLE_LATEX="latex"
    49 ISABELLE_PDFLATEX="pdflatex"
    50 ISABELLE_BIBTEX="bibtex"
    51 ISABELLE_MAKEINDEX="makeindex"
    52 ISABELLE_EPSTOPDF="epstopdf"
    53 
    54 
    55 ###
    56 ### Misc path settings
    57 ###
    58 
    59 ISABELLE_COMPONENT_REPOSITORY="http://isabelle.in.tum.de/components"
    60 
    61 # The place for user configuration, heap files, etc.
    62 if [ -z "$ISABELLE_IDENTIFIER" ]; then
    63   ISABELLE_HOME_USER="$USER_HOME/.isabelle/isabisac15"
    64 else
    65   ISABELLE_HOME_USER="$USER_HOME/.isabelle/isabisac15"
    66 fi
    67 
    68 # Where to look for isabelle tools (multiple dirs separated by ':').
    69 ISABELLE_TOOLS="$ISABELLE_HOME/lib/Tools"
    70 
    71 # Location for temporary files (should be on a local file system).
    72 ISABELLE_TMP_PREFIX="${TMPDIR:-/tmp}/isabelle-$USER"
    73 
    74 # Heap input locations. ML system identifier is included in lookup.
    75 ISABELLE_PATH="$ISABELLE_HOME_USER/heaps:$ISABELLE_HOME/heaps"
    76 
    77 # Heap output location. ML system identifier is appended automatically later on.
    78 ISABELLE_OUTPUT="$ISABELLE_HOME_USER/heaps"
    79 ISABELLE_BROWSER_INFO="$ISABELLE_HOME_USER/browser_info"
    80 
    81 # Site settings check -- just to make it a little bit harder to copy this file verbatim!
    82 [ -n "$ISABELLE_SITE_SETTINGS_PRESENT" ] && \
    83   { echo >&2 "### Isabelle site settings already present!  Maybe copied etc/settings in full?"; }
    84 ISABELLE_SITE_SETTINGS_PRESENT=true
    85 
    86 
    87 ###
    88 ### Default logic
    89 ###
    90 
    91 ISABELLE_LOGIC=HOL
    92 
    93 
    94 ###
    95 ### Docs
    96 ###
    97 
    98 # Where to look for docs (multiple dirs separated by ':').
    99 ISABELLE_DOCS="$ISABELLE_HOME/doc"
   100 
   101 ISABELLE_DOCS_RELEASE_NOTES="ANNOUNCE:README:NEWS:COPYRIGHT:CONTRIBUTORS:contrib/README:src/Tools/jEdit/README:README_REPOSITORY"
   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"
   103 
   104 # "open" within desktop environment (potentially asynchronous)
   105 case "$ISABELLE_PLATFORM_FAMILY" in
   106   linux)
   107     ISABELLE_OPEN="xdg-open"
   108     ;;
   109   macos)
   110     ISABELLE_OPEN="open"
   111     ;;
   112   windows)
   113     ISABELLE_OPEN="cygstart"
   114     ;;
   115 esac
   116 
   117 PDF_VIEWER="$ISABELLE_OPEN"
   118 DVI_VIEWER="$ISABELLE_OPEN"
   119 
   120 
   121 ###
   122 ### Rendering information
   123 ###
   124 
   125 ISABELLE_FONTS="$ISABELLE_HOME/lib/fonts/IsabelleText.ttf:$ISABELLE_HOME/lib/fonts/IsabelleTextBold.ttf"
   126 ISABELLE_SYMBOLS="$ISABELLE_HOME/etc/symbols:$ISABELLE_HOME_USER/etc/symbols"
   127 
   128 
   129 ###
   130 ### Misc old-style settings
   131 ###
   132 
   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 
   140 # Misc programming languages
   141 #ISABELLE_GHC="/usr/bin/ghc"
   142 #ISABELLE_OCAML="/usr/bin/ocaml"
   143 #ISABELLE_SWIPL="/usr/bin/swipl"